From f2402087275ecd87b82b7b8383a424876a9b47df Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Thu, 2 Jan 2020 20:41:30 +0100 Subject: [PATCH] Initial Commit --- .SRCINFO | 12 ++++++++++++ .gitignore | 5 +++++ PKGBUILD | 20 ++++++++++++++++++++ 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..4217e99 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = mint-backgrounds-helena + pkgdesc = The backgrounds included in Linux Mint 8 Helena + pkgver = 1.0 + pkgrel = 1 + url = http://packages.linuxmint.com/pool/main/m/mint-backgrounds-helena + arch = any + license = Various + source = http://packages.linuxmint.com/pool/main/m/mint-backgrounds-helena/mint-backgrounds-helena_1.0.tar.gz + sha256sums = dea2b270d1c13cebdb348b42e39baece112549609cd7651f5bd2438b4275b13a + +pkgname = mint-backgrounds-helena + 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..d4bf14b --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Markus Pesch + +pkgname=mint-backgrounds-helena +pkgver=1.0 +pkgrel=1 +pkgdesc="The backgrounds included in Linux Mint 8 Helena" +license=('Various') +arch=('any') +url="http://packages.linuxmint.com/pool/main/m/${pkgname}" +source=("${url}/${pkgname}_$pkgver.tar.gz") +sha256sums=('dea2b270d1c13cebdb348b42e39baece112549609cd7651f5bd2438b4275b13a') + +package() { + mkdir --parents ${pkgdir}/usr/share/backgrounds/linuxmint-helena + mkdir --parents ${pkgdir}/usr/share/{cinnamon-background-properties,gnome-background-properties} + + cp --archive ${srcdir}/${pkgname}/usr/share/backgrounds/linuxmint-helena ${pkgdir}/usr/share/backgrounds + cp --archive ${srcdir}/${pkgname}/usr/share/gnome-background-properties/* ${pkgdir}/usr/share/cinnamon-background-properties + cp --archive ${srcdir}/${pkgname}/usr/share/gnome-background-properties/* ${pkgdir}/usr/share/gnome-background-properties +} \ No newline at end of file