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/libmcrypt |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libmcrypt')
-rw-r--r-- | extra/libmcrypt/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/extra/libmcrypt/PKGBUILD b/extra/libmcrypt/PKGBUILD new file mode 100644 index 000000000..0bbe97d83 --- /dev/null +++ b/extra/libmcrypt/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 51263 2009-09-06 19:41:24Z giovanni $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Jan de Groot <jgc@archlinux.org> +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> + +pkgname=libmcrypt +pkgver=2.5.8 +pkgrel=2 +pkgdesc="A library which provides a uniform interface to several symmetric encryption algorithms" +url="http://mcrypt.sourceforge.net/" +arch=(i686 x86_64) +license=('GPL') +depends=('glibc') +options=('!libtool') +source=(http://downloads.sourceforge.net/mcrypt/${pkgname}-${pkgver}.tar.bz2) +md5sums=('c4f491dd411a09e9de3b8702ea6f73eb') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + ./configure --prefix=/usr --mandir=/usr/share/man + make || return 1 + make DESTDIR=${pkgdir} install +} |