PKGBUILDs/core/libgcrypt/PKGBUILD

53 lines
1.4 KiB
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>
2016-12-17 16:00:09 +00:00
# - disable NEON and ARMv8 crypto support on !AArch64
2017-08-02 00:31:35 +00:00
# - fix screwed up capability detection
2014-01-13 20:37:34 +00:00
pkgname=libgcrypt
2017-08-31 12:23:44 +00:00
pkgver=1.8.1
2016-06-18 17:35:15 +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')
2016-07-19 12:28:52 +00:00
depends=('libgpg-error')
2014-01-13 20:37:34 +00:00
options=('!emptydirs')
2015-09-10 23:56:52 +00:00
# https://www.gnupg.org/download/integrity_check.html
2015-03-01 16:07:03 +00:00
source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
2016-12-17 16:00:09 +00:00
# https://gnupg.org/download/integrity_check.html
2017-08-31 12:23:44 +00:00
sha1sums=('dd35f00da45602afe81e01f4d60c40bbdd826fe6'
2015-03-01 16:07:03 +00:00
'SKIP')
2015-09-10 23:56:52 +00:00
validpgpkeys=('031EC2536E580D8EA286A9F22071B08A33BD3F06' # "NIIBE Yutaka (GnuPG Release Key) <gniibe@fsij.org>"
'D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
2014-01-13 20:37:34 +00:00
2014-01-31 16:48:08 +00:00
build() {
cd ${pkgname}-${pkgver}
2016-12-17 16:00:09 +00:00
[[ $CARCH != "aarch64" ]] && CONFIG="--disable-neon-support --disable-arm-crypto-support"
2014-01-13 20:37:34 +00:00
./configure --prefix=/usr \
--disable-static \
--disable-padlock-support \
2016-12-17 16:00:09 +00:00
$CONFIG
2017-08-02 00:31:35 +00:00
# fix screwed up capability detection
if [[ $CARCH != "aarch64" ]]; then
sed -i '/HAVE_GCC_INLINE_ASM_AARCH32_CRYPTO 1/d' config.h
sed -i '/HAVE_GCC_INLINE_ASM_NEON 1/d' config.h
fi
2014-01-13 20:37:34 +00:00
make
}
check() {
cd ${pkgname}-${pkgver}
make check
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}