diff options
Diffstat (limited to 'abs/core-testing/libdatrie')
-rw-r--r-- | abs/core-testing/libdatrie/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/abs/core-testing/libdatrie/PKGBUILD b/abs/core-testing/libdatrie/PKGBUILD index 9a199e3..a4408d7 100644 --- a/abs/core-testing/libdatrie/PKGBUILD +++ b/abs/core-testing/libdatrie/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ +# $Id: PKGBUILD 35276 2009-04-11 20:11:41Z jgc $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Contributor: Chaiwat Suttipongsakul <cwt114@gmail.com> pkgname=libdatrie -pkgver=0.1.2 +pkgver=0.2.1 pkgrel=1 pkgdesc="Libdatrie is an implementation of double-array structure for representing trie, as proposed by Junichi Aoe." url="http://linux.thai.net/~thep/datrie/datrie.html" @@ -12,11 +12,11 @@ arch=('i686' 'x86_64') depends=('glibc') options=('!libtool' '!emptydirs') source=(http://linux.thai.net/pub/thailinux/software/libthai/${pkgname}-${pkgver}.tar.gz) -md5sums=('3eaedd5452149e11547a0dc74ee3fcfd') +md5sums=('196e485958f74cf13e676d93729067cf') build() { - cd ${startdir}/src/${pkgname}-${pkgver} - ./configure --prefix=/usr --disable-static + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --disable-static || return 1 make || return 1 - make DESTDIR=${startdir}/pkg install + make DESTDIR="${pkgdir}" install || return 1 } |