2014-01-13 20:37:34 +00:00
|
|
|
# $Id$
|
|
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2014-01-31 16:48:08 +00:00
|
|
|
# - disable DRNG and NEON support
|
2014-01-13 20:37:34 +00:00
|
|
|
|
|
|
|
pkgname=libgcrypt
|
2014-08-23 15:47:27 +00:00
|
|
|
pkgver=1.6.2
|
2014-01-31 16:48:08 +00:00
|
|
|
pkgrel=1
|
2014-01-13 20:37:34 +00:00
|
|
|
pkgdesc="General purpose cryptographic library based on the code from GnuPG"
|
|
|
|
arch=(i686 x86_64)
|
|
|
|
url="http://www.gnupg.org"
|
|
|
|
license=('LGPL')
|
|
|
|
depends=('libgpg-error>=1.10-2')
|
|
|
|
options=('!emptydirs')
|
2014-01-31 16:48:08 +00:00
|
|
|
install=$pkgname.install
|
2014-08-23 15:47:27 +00:00
|
|
|
source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
|
|
|
sha1sums=('cc31aca87e4a3769cb86884a3f5982b2cc8eb7ec')
|
2014-01-13 20:37:34 +00:00
|
|
|
|
2014-01-31 16:48:08 +00:00
|
|
|
build() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
2014-01-13 20:37:34 +00:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--disable-static \
|
|
|
|
--disable-padlock-support \
|
|
|
|
--disable-drng-support \
|
|
|
|
--disable-neon-support
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make check
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
}
|