From 7e1a8915f356d72c4dd4b17cf51702ef233f06ad Mon Sep 17 00:00:00 2001 From: Ariel Lieberman Date: Thu, 13 Dec 2018 14:21:28 +0200 Subject: [PATCH] Initial PKGBUILD and .SRCINFO for mint-backgrounds-tessa --- .SRCINFO | 12 ++++++++++++ PKGBUILD | 20 ++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..3d2cc64 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = mint-backgrounds-tessa + pkgdesc = The backgrounds included in Linux Mint 19 Tessa + pkgver = 1.0 + pkgrel = 1 + url = http://packages.linuxmint.com/pool/main/m/mint-backgrounds-tessa + arch = any + license = GPL3 + source = http://packages.linuxmint.com/pool/main/m/mint-backgrounds-tessa/mint-backgrounds-tessa_1.0.tar.gz + md5sums = 5162c33dd12a6f9b13c45bd7528f42a9 + +pkgname = mint-backgrounds-tessa + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..c51f3c4 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,20 @@ +#Maintainer: Rellieberman +#Co-Maintainer: Seantum + +pkgname=mint-backgrounds-tessa +pkgver=1.0 +pkgrel=1 +pkgdesc="The backgrounds included in Linux Mint 19 Tessa" +license=('GPL3') +arch=('any') +url="http://packages.linuxmint.com/pool/main/m/mint-backgrounds-tessa" +source=("$url/mint-backgrounds-tessa_$pkgver.tar.gz") +md5sums=("711e1b6d57fa6f4d4d108c0acd428a3b") +package() { + mkdir -p $pkgdir/usr/share/backgrounds/linuxmint-tessa + cp -a $srcdir/$pkgname/backgrounds/linuxmint-tessa $pkgdir/usr/share/backgrounds/ + mkdir -p $pkgdir/usr/share/{cinnamon-background-properties,gnome-background-properties} + cp -a $srcdir/$pkgname/cinnamon-background-properties/* $pkgdir/usr/share/cinnamon-background-properties/ + cp -a $srcdir/$pkgname/gnome-background-properties/* $pkgdir/usr/share/gnome-background-properties +} +