diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-01-03 07:56:23 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-01-03 07:56:23 (GMT) |
commit | 0ce6326882d1ef6b45955ce0af948aa3da22bc07 (patch) | |
tree | 6ef646f87190a95deea7641df53c6ee5396c900c /abs/extra-testing/gperf | |
parent | 907606040ebd98338b939452ee37698b62718820 (diff) | |
download | linhes_pkgbuild-0ce6326882d1ef6b45955ce0af948aa3da22bc07.zip linhes_pkgbuild-0ce6326882d1ef6b45955ce0af948aa3da22bc07.tar.gz linhes_pkgbuild-0ce6326882d1ef6b45955ce0af948aa3da22bc07.tar.bz2 |
Added support for Miro.
Diffstat (limited to 'abs/extra-testing/gperf')
-rw-r--r-- | abs/extra-testing/gperf/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/abs/extra-testing/gperf/PKGBUILD b/abs/extra-testing/gperf/PKGBUILD new file mode 100644 index 0000000..0521eb9 --- /dev/null +++ b/abs/extra-testing/gperf/PKGBUILD @@ -0,0 +1,20 @@ +#$Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ +#Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=gperf +pkgver=3.0.3 +pkgrel=1 +pkgdesc="Perfect hash function generator." +arch=('x86_64' 'i686') +url="http://www.gnu.org/software/gperf/" +license=('GPL') +depends=('gcc-libs') +source=(ftp://ftp.gnu.org/gnu/gperf/${pkgname}-${pkgver}.tar.gz) +md5sums=('cc20e58975a38075440423c8fb85fd00') + +build() { + cd $startdir/src/${pkgname}-${pkgver} + ./configure --prefix=/usr + make || return 1 + make DESTDIR=${startdir}/pkg install +} |