summaryrefslogtreecommitdiff
path: root/extra/libmcrypt/PKGBUILD
blob: f4e845f0a8b4482611fcce547d42da17e1ba322c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 'mips64el')
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
}