create PKGBUILD for ulyana backgrounds

This commit is contained in:
Ariel Lieberman 2020-06-27 21:13:05 +03:00
commit 1400fd93c0
2 changed files with 31 additions and 0 deletions

12
.SRCINFO Normal file
View File

@ -0,0 +1,12 @@
pkgbase = mint-backgrounds-ulyana
pkgdesc = The backgrounds included in Linux Mint 20 Ulyana
pkgver = 1.1
pkgrel = 1
url = http://packages.linuxmint.com/pool/main/m/mint-backgrounds-ulyana
arch = any
license = GPL3
source = http://packages.linuxmint.com/pool/main/m/mint-backgrounds-ulyana/mint-backgrounds-ulyana_1.1.tar.gz
md5sums = 4d7f54fe42b6cfd177aa056bc655b36d
pkgname = mint-backgrounds-ulyana

19
PKGBUILD Normal file
View File

@ -0,0 +1,19 @@
#Maintainer: Relliebermann <name AT gmail DOT com>
pkgname=mint-backgrounds-ulyana
pkgver=1.1
pkgrel=1
pkgdesc="The backgrounds included in Linux Mint 20 Ulyana"
license=('GPL3')
arch=('any')
url="http://packages.linuxmint.com/pool/main/m/${pkgname}"
source=("${url}/${pkgname}_${pkgver}.tar.gz")
md5sums=("4d7f54fe42b6cfd177aa056bc655b36d")
package() {
mkdir -p $pkgdir/usr/share/backgrounds/linuxmint-ulyana
cp -a $srcdir/$pkgname/backgrounds/linuxmint-ulyana $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
}