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/mhash |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/mhash')
-rw-r--r-- | extra/mhash/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/mhash/PKGBUILD b/extra/mhash/PKGBUILD new file mode 100644 index 000000000..30862296f --- /dev/null +++ b/extra/mhash/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 27643 2009-02-24 05:16:32Z eric $ +# Maintainer: gregor <gregor@archlinux.org> +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> + +pkgname=mhash +pkgver=0.9.9.9 +pkgrel=1 +pkgdesc="A thread-safe hash library which provides a uniform interface to hash algorithms (MD5, SHA-1, HAVAL, etc" +arch=('i686' 'x86_64') +url="http://mhash.sourceforge.net/" +license=('LGPL') +depends=('glibc') +options=('!libtool') +source=(http://downloads.sourceforge.net/sourceforge/mhash/$pkgname-$pkgver.tar.bz2) +md5sums=('f91c74f9ccab2b574a98be5bc31eb280') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr --enable-static || return 1 + make || return 1 + make prefix=$pkgdir/usr install || return 1 +} |