mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
removed core/libgcrypt
This commit is contained in:
parent
a081c237c4
commit
5033fba026
1 changed files with 0 additions and 55 deletions
|
@ -1,55 +0,0 @@
|
|||
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - disable NEON and ARMv8 crypto support on !AArch64
|
||||
|
||||
pkgname=libgcrypt
|
||||
pkgver=1.9.4
|
||||
pkgrel=1
|
||||
pkgdesc="General purpose cryptographic library based on the code from GnuPG"
|
||||
arch=(x86_64)
|
||||
url="https://www.gnupg.org"
|
||||
license=('LGPL')
|
||||
depends=('libgpg-error')
|
||||
options=('!emptydirs')
|
||||
# https://www.gnupg.org/download/integrity_check.html
|
||||
source=(https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
|
||||
sha1sums=('1bccc8393482fa1953323ff429c6b5ba5676eb1a'
|
||||
'SKIP')
|
||||
validpgpkeys=('6DAA6E64A76D2840571B4902528897B826403ADA') # "Werner Koch (dist signing 2020)"
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "${pkgname}"-${pkgver}
|
||||
|
||||
[[ $CARCH != "aarch64" ]] && CONFIG="--disable-neon-support --disable-arm-crypto-support --disable-asm"
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--disable-static \
|
||||
--disable-padlock-support \
|
||||
$CONFIG
|
||||
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "${pkgname}"-${pkgver}
|
||||
make check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${pkgname}"-${pkgver}
|
||||
make DESTDIR="${pkgdir}" install
|
||||
}
|
Loading…
Reference in a new issue