Compare commits

..

4 Commits

Author SHA1 Message Date
bf09b33c56 fix(mint-backgrounds): add mint-backgrounds-vanessa
All checks were successful
continuous-integration/drone/push Build is passing
2022-08-01 19:41:04 +02:00
d8b581b4b3 fix(mint-backgrounds-vanessa): init 2022-08-01 19:26:08 +02:00
e1d9a4f7f1 fix(docker-pushrm): upgrade to version 1.9.0-2 2022-07-20 10:36:31 +02:00
68278d4e18 fix(btrbk): upgrade to version 0.32.2 2022-07-19 20:12:09 +02:00
5 changed files with 29 additions and 3 deletions

2
btrbk

Submodule btrbk updated: cb45267cba...e25510568a

5
mint-backgrounds-vanessa/.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
*
!PKGBUILD
!.gitignore
!.editorconfig
!.SRCINFO

View File

@@ -0,0 +1,21 @@
# Maintainer: Markus Pesch <markus.pesch@cryptic.systems>
pkgname=mint-backgrounds-vanessa
pkgver=1.1
pkgrel=1
pkgdesc="The backgrounds included in Linux Mint 21 vanessa"
license=('Various')
arch=('any')
url="http://packages.linuxmint.com/pool/main/m/${pkgname}"
source=("${url}/${pkgname}_$pkgver.tar.gz")
sha256sums=('8ea148cd78c01a54c1d1ea4d8bbfb8d58ba20ac03cb945014d223f09b8e42b92')
package() {
mkdir --parents ${pkgdir}/usr/share/backgrounds/linuxmint-vanessa
mkdir --parents ${pkgdir}/usr/share/{cinnamon-background-properties,gnome-background-properties,mate-background-properties}
cp --archive ${srcdir}/${pkgname}/backgrounds/linuxmint-vanessa ${pkgdir}/usr/share/backgrounds
cp --archive ${srcdir}/${pkgname}/cinnamon-background-properties/* ${pkgdir}/usr/share/cinnamon-background-properties
cp --archive ${srcdir}/${pkgname}/gnome-background-properties/* ${pkgdir}/usr/share/gnome-background-properties
cp --archive ${srcdir}/${pkgname}/mate-background-properties/* ${pkgdir}/usr/share/mate-background-properties
}