diff options
Diffstat (limited to 'abs/core-testing/intltool')
-rw-r--r-- | abs/core-testing/intltool/ChangeLog | 29 | ||||
-rw-r--r-- | abs/core-testing/intltool/PKGBUILD | 22 |
2 files changed, 51 insertions, 0 deletions
diff --git a/abs/core-testing/intltool/ChangeLog b/abs/core-testing/intltool/ChangeLog new file mode 100644 index 0000000..f9a7192 --- /dev/null +++ b/abs/core-testing/intltool/ChangeLog @@ -0,0 +1,29 @@ +2008-11-28 Jan de Groot <jgc@archlinux.org> + + * intltool 0.40.5-1 + * Upstream update + +2008-09-25 Jan de Groot <jgc@archlinux.org> + + * intltool 0.40.4-1 + * Upstream update + +2008-07-28 Eric Belanger <eric@archlinux.org> + + * intltool 0.40.3-1 + * Upstream update + +2008-07-23 Eric Belanger <eric@archlinux.org> + + * intltool 0.40.1-1 + * Upstream update + +2008-06-08 Eric Belanger <eric@archlinux.org> + + * intltool 0.40.0-1 + * Upstream update + +2008-03-01 Eric Belanger <eric@archlinux.org> + + * intltool 0.37.1-1 + * Upstream update diff --git a/abs/core-testing/intltool/PKGBUILD b/abs/core-testing/intltool/PKGBUILD new file mode 100644 index 0000000..b780d3b --- /dev/null +++ b/abs/core-testing/intltool/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 19652 2008-11-28 20:22:55Z jgc $ +# Maintainer: Eric Belanger <eric@archlinux.org> +# Contributor: Jan de Groot <jgc@archlinux.org> + +pkgname=intltool +pkgver=0.40.5 +pkgrel=1 +pkgdesc="The internationalization tool collection" +arch=('i686' 'x86_64') +url="http://freedesktop.org/wiki/Software/intltool" +license=('GPL') +depends=('perlxml') +source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2) +md5sums=('3e7ded6f50d88cf8b8bb505eaf591775') +sha1sums=('72a67f18dbc12e1af11bfff80100993107b4df84') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr || return 1 + make || return 1 + make DESTDIR="${pkgdir}" install || return 1 +} |