PKGBUILDs/core/libgcrypt/PKGBUILD

41 lines
974 B
Bash
Raw Normal View History

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
2015-03-01 16:07:03 +00:00
pkgver=1.6.3
pkgrel=2
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
2015-03-01 16:07:03 +00:00
source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
sha1sums=('9456e7b64db9df8360a1407a38c8c958da80bbf1'
'SKIP')
validpgpkeys=('031EC2536E580D8EA286A9F22071B08A33BD3F06') # "NIIBE Yutaka (GnuPG Release Key) <gniibe@fsij.org>"
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
}