diff options
author | Britney Fransen <brfransen@gmail.com> | 2014-12-01 18:11:32 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2014-12-01 18:11:32 (GMT) |
commit | b9fa36bc0300e7ad48991cb728d46ff823b44634 (patch) | |
tree | ead83990f77d9dada20f21f75b65e23fde285b91 /abs/extra/icon-naming-utils/PKGBUILD | |
parent | 94d21318d490b4ec5ff366d9ccd5416cbb6434f6 (diff) | |
download | linhes_pkgbuild-b9fa36bc0300e7ad48991cb728d46ff823b44634.zip linhes_pkgbuild-b9fa36bc0300e7ad48991cb728d46ff823b44634.tar.gz linhes_pkgbuild-b9fa36bc0300e7ad48991cb728d46ff823b44634.tar.bz2 |
icon-name-utils: readd. dep of adwaita-icon-theme
Diffstat (limited to 'abs/extra/icon-naming-utils/PKGBUILD')
-rw-r--r-- | abs/extra/icon-naming-utils/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/abs/extra/icon-naming-utils/PKGBUILD b/abs/extra/icon-naming-utils/PKGBUILD new file mode 100644 index 0000000..7a7aff2 --- /dev/null +++ b/abs/extra/icon-naming-utils/PKGBUILD @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Contributor: William Rea <sillywilly@gmail.com> + +pkgname=icon-naming-utils +pkgver=0.8.90 +pkgrel=3 +pkgdesc="Maps the new names of icons for Tango to the legacy names used by the GNOME and KDE desktops." +arch=(any) +license=('GPL') +url="http://tango.freedesktop.org/" +depends=('perl-xml-simple') +source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz + remove-legacy-calc.patch) +md5sums=('2c5c7a418e5eb3268f65e21993277fba' + 'd3490e31df95ae11c96f0af2a9ef2ed0') + +build() { + cd "$srcdir/$pkgname-$pkgver" + patch -Np1 -i "$srcdir/remove-legacy-calc.patch" + ./configure --prefix=/usr --sysconfdir=/etc \ + --libexecdir=/usr/lib/icon-naming-utils \ + --localstatedir=/var + make +} +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install + mv "$pkgdir/usr/share/pkgconfig" "$pkgdir/usr/lib/pkgconfig" +} |