diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/libdatrie |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libdatrie')
-rw-r--r-- | extra/libdatrie/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/libdatrie/PKGBUILD b/extra/libdatrie/PKGBUILD new file mode 100644 index 000000000..68ac77c7f --- /dev/null +++ b/extra/libdatrie/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 87837 2010-08-18 12:55:23Z jgc $ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Contributor: Chaiwat Suttipongsakul <cwt114@gmail.com> + +pkgname=libdatrie +pkgver=0.2.4 +pkgrel=1 +pkgdesc="Implementation of double-array structure for representing trie, as proposed by Junichi Aoe." +url="http://linux.thai.net/~thep/datrie/datrie.html" +license=('LGPL') +arch=('i686' 'x86_64') +depends=('glibc') +options=('!libtool' '!emptydirs') +source=(http://linux.thai.net/pub/thailinux/software/libthai/${pkgname}-${pkgver}.tar.gz) +md5sums=('7f7d592114f98db9e4c7171c3f2befc5') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --disable-static + make + make DESTDIR="${pkgdir}" install +} |