diff options
-rw-r--r-- | .SRCINFO | 14 | ||||
-rw-r--r-- | PKGBUILD | 21 |
2 files changed, 35 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..6b21b7714931 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = madpablo-theme + pkgdesc = GTK2 theme + pkgver = 1 + pkgrel = 1 + url = https://sourceforge.net/projects/archbangretro/ + arch = any + license = GPL + provides = madpablo-theme + conflicts = madpablo-theme + source = https://sourceforge.net/projects/archbangretro/files/madpablo.tar.xz + md5sums = 91e6fe7e9e2ec2ba6569063bef8cae68 + +pkgname = madpablo-theme + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..dc830b8b7509 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: Martin Filion <mordillo98@gmail.com> +pkgname=madpablo-theme +pkgname_link=madpablo-theme +pkgbase=madpablo-theme +pkgver=1 +pkgrel=1 +pkgdesc="GTK2 theme" +url="https://sourceforge.net/projects/archbangretro/" +arch=('any') +license=('GPL') +provides=($pkgname) +conflicts=($pkgname) +source=('https://sourceforge.net/projects/archbangretro/files/madpablo.tar.xz') +md5sums=('91e6fe7e9e2ec2ba6569063bef8cae68') + +package() { + install -d /$pkgdir/usr/share/themes + + cp -R madpablo/ /$pkgdir/usr/share/themes/ +} + |