PKGBUILDs/core/libgcrypt/PKGBUILD

64 lines
1.8 KiB
Bash
Raw Normal View History

2014-01-13 20:37:34 +00:00
# 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
2018-10-30 00:08:55 +00:00
pkgver=1.8.4
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"
2017-12-22 12:43:24 +00:00
arch=(x86_64)
2014-01-13 20:37:34 +00:00
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
2017-12-22 12:43:24 +00:00
source=(https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
2018-10-30 00:08:55 +00:00
sha1sums=('4a8ef9db6922f3a31992aca5640b4198a69b58fc'
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
2017-12-22 12:43:24 +00:00
options=(!makeflags)
prepare() {
cd ${pkgname}-${pkgver}
# tests fail due to systemd+libseccomp preventing memory syscalls when building in chroots
# t-secmem: line 176: gcry_control (GCRYCTL_INIT_SECMEM, pool_size, 0) failed: General error
# FAIL: t-secmem
# t-sexp: line 1174: gcry_control (GCRYCTL_INIT_SECMEM, 16384, 0) failed: General error
# FAIL: t-sexp
sed -i "s:t-secmem::" tests/Makefile.am
sed -i "s:t-sexp::" tests/Makefile.am
autoreconf -vfi
}
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
}