From 9117a28fc838ea96fb7ae727cc47948bd8a60a57 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Sat, 2 Dec 2023 11:31:37 +0100 Subject: [PATCH] Initial Commit --- .SRCINFO | 11 +++++++++++ .gitignore | 5 +++++ PKGBUILD | 21 +++++++++++++++++++++ 3 files changed, 37 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..8a48e73 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,11 @@ +pkgbase = mint-backgrounds-virginia + pkgdesc = The backgrounds included in Linux Mint 21.3 virginia + pkgver = 1.0 + pkgrel = 1 + url = http://packages.linuxmint.com/pool/main/m/mint-backgrounds-virginia + arch = any + license = Various + source = http://packages.linuxmint.com/pool/main/m/mint-backgrounds-virginia/mint-backgrounds-virginia_1.0.tar.gz + sha256sums = b8800f10b601a4b51d3dfc17a6108f0a26e2816547206c528061a57a357938a6 + +pkgname = mint-backgrounds-virginia diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3814e41 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +* +!PKGBUILD +!.gitignore +!.editorconfig +!.SRCINFO diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..e0d1c5c --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: Markus Pesch + +pkgname=mint-backgrounds-virginia +pkgver=1.0 +pkgrel=1 +pkgdesc="The backgrounds included in Linux Mint 21.3 virginia" +license=('Various') +arch=('any') +url="http://packages.linuxmint.com/pool/main/m/${pkgname}" +source=("${url}/${pkgname}_$pkgver.tar.gz") +sha256sums=('b8800f10b601a4b51d3dfc17a6108f0a26e2816547206c528061a57a357938a6') + +package() { + mkdir --parents ${pkgdir}/usr/share/backgrounds/linuxmint-virginia + mkdir --parents ${pkgdir}/usr/share/{cinnamon-background-properties,gnome-background-properties,mate-background-properties} + + cp --archive ${srcdir}/${pkgname}/backgrounds/linuxmint-virginia ${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 +}