diff options
author | James Meyer <James.meyer@operamail.com> | 2008-10-04 05:48:08 (GMT) |
---|---|---|
committer | James Meyer <James.meyer@operamail.com> | 2008-10-04 05:48:08 (GMT) |
commit | 130554ce27ed98f3863fd5814ce85071c2f8b814 (patch) | |
tree | 6d8c2fdd4199c325bec6061685d97cba2a9176b2 /abs/chroot-devel/icon-naming-utils | |
parent | 05598ad0bc67141ff1742c13b4db0765f030be4f (diff) | |
download | linhes_pkgbuild-130554ce27ed98f3863fd5814ce85071c2f8b814.zip linhes_pkgbuild-130554ce27ed98f3863fd5814ce85071c2f8b814.tar.gz linhes_pkgbuild-130554ce27ed98f3863fd5814ce85071c2f8b814.tar.bz2 |
more utils
Diffstat (limited to 'abs/chroot-devel/icon-naming-utils')
-rw-r--r-- | abs/chroot-devel/icon-naming-utils/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/abs/chroot-devel/icon-naming-utils/PKGBUILD b/abs/chroot-devel/icon-naming-utils/PKGBUILD new file mode 100644 index 0000000..82592ff --- /dev/null +++ b/abs/chroot-devel/icon-naming-utils/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 4394 2008-07-06 20:12:55Z jgc $ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Contributor: William Rea <sillywilly@gmail.com> + +pkgname=icon-naming-utils +pkgver=0.8.7 +pkgrel=1 +pkgdesc="Maps the new names of icons for Tango to the legacy names used by the GNOME and KDE desktops." +arch=(i686 x86_64) +license=('GPL') +url="http://tango.freedesktop.org/" +depends=('perl-xml-simple') +source=(http://tango.freedesktop.org/releases/${pkgname}-${pkgver}.tar.bz2) +md5sums=('2bcd77b8b6361831a932a5e76e82b66d') + +build() { + cd ${startdir}/src/${pkgname}-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc \ + --libexecdir=/usr/lib/icon-naming-utils \ + --localstatedir=/var + make || return 1 + make DESTDIR=${startdir}/pkg install + mv ${startdir}/pkg/usr/share/pkgconfig ${startdir}/pkg/usr/lib/pkgconfig +} |