Compare commits

...

4 Commits

Author SHA1 Message Date
Markus Pesch bf09b33c56
fix(mint-backgrounds): add mint-backgrounds-vanessa
continuous-integration/drone/push Build is passing Details
2022-08-01 19:41:04 +02:00
Markus Pesch d8b581b4b3
fix(mint-backgrounds-vanessa): init 2022-08-01 19:26:08 +02:00
Markus Pesch e1d9a4f7f1
fix(docker-pushrm): upgrade to version 1.9.0-2 2022-07-20 10:36:31 +02:00
Markus Pesch 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

@ -1 +1 @@
Subproject commit cb45267cba3cb04c5fbe6a8fd11b297e30a92c8e
Subproject commit e25510568a46dc6e3179b052eecbca36764932a5

@ -1 +1 @@
Subproject commit ebf80686299fbf2c6a687d933b8c8417eb4df6bc
Subproject commit 568f2b7b8bcd531433ad25fea4eb42626ba39a46

@ -1 +1 @@
Subproject commit 9b4fd5bd3fb2cd5b0b8fbc8c213b56e7869b0376
Subproject commit 5cb5c028a401856990e5793885c5c5df73c34c4a

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
}