diff options
author | FadeMind | 2015-06-08 12:51:41 +0200 |
---|---|---|
committer | FadeMind | 2015-06-08 12:51:41 +0200 |
commit | 9826d20f837dcf01bb2fcf1a011e53fe7183a82f (patch) | |
tree | ce5c75b1b7f54d70c68e706588d763979982fc67 | |
download | aur-9826d20f837dcf01bb2fcf1a011e53fe7183a82f.tar.gz |
0.5.1-2
-rw-r--r-- | .SRCINFO | 13 | ||||
-rw-r--r-- | PKGBUILD | 22 |
2 files changed, 35 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..adb28729288 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = gtk2-theme-dust + pkgdesc = A clean, modern remix on the defining aesthetic elements of Ubuntu + pkgver = 0.5.1 + pkgrel = 2 + url = https://wiki.ubuntu.com/Artwork/Incoming/DustTheme + arch = any + license = GPL3 + depends = gtk-engine-murrine + source = gtk2-theme-dust-0.5.1.tar.gz::https://code.launchpad.net/dusttheme/0.5/0.5.1/+download/Dust-0.5.tar.gz + sha256sums = a7a03d8cd06a35edb9fa0b57c9c6f309d267f801018b57f86ff4710d535da7e1 + +pkgname = gtk2-theme-dust + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..c1f4c6536ae --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,22 @@ +# Maintainer: FadeMind <fademind@gmail.com> +# Contributor: Egon Ashrafinia <e.ashrafinia@gmail.com> +# Contributor: TDY <tdy@gmx.com> +# Contributor: Andrea Scarpino <andrea@archlinux.org> + +pkgname=gtk2-theme-dust +pkgver=0.5.1 +pkgrel=2 +pkgdesc="A clean, modern remix on the defining aesthetic elements of Ubuntu" +arch=('any') +url="https://wiki.ubuntu.com/Artwork/Incoming/DustTheme" +license=('GPL3') +depends=('gtk-engine-murrine') +source=("${pkgname}-${pkgver}.tar.gz::https://code.launchpad.net/dusttheme/${pkgver%.*}/$pkgver/+download/Dust-${pkgver%.*}.tar.gz") +sha256sums=('a7a03d8cd06a35edb9fa0b57c9c6f309d267f801018b57f86ff4710d535da7e1') + +package() { + install -dm755 "$pkgdir/usr/share/themes" + cp -rf "$srcdir/Dust" "$pkgdir/usr/share/themes" + find ${pkgdir}/usr -type f -exec chmod 644 {} \; + find ${pkgdir}/usr -type d -exec chmod 755 {} \; +} |