mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
25 lines
727 B
Bash
25 lines
727 B
Bash
|
# $Id: PKGBUILD 51198 2009-09-05 20:05:48Z andrea $
|
||
|
# 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
|
||
|
}
|