From d4d556538590a5c95ccfeb356c105c5b23a0d60a Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Mon, 7 Feb 2022 03:00:03 +0000 Subject: [PATCH] extra/botan to 2.19.1-1.1 --- extra/botan/PKGBUILD | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/extra/botan/PKGBUILD b/extra/botan/PKGBUILD index f34c5240c..3e23fa240 100644 --- a/extra/botan/PKGBUILD +++ b/extra/botan/PKGBUILD @@ -6,12 +6,11 @@ # Contributor: Hexchain Tong # Contributor: Jack Lloyd -# ALARM: Kevin Mihelich -# - disable neon on !AArch64 +# remove when bumped upstream pkgname=botan pkgver=2.19.1 -pkgrel=1 +pkgrel=1.1 pkgdesc='Crypto library written in C++' arch=(x86_64) url='https://botan.randombit.net/' @@ -27,8 +26,6 @@ validpgpkeys=('621DAF6411E1851C4CF9A2E16211EBF1EFBADFBC') # Botan Distribution K build() { cd ${pkgname^}-$pkgver - [[ $CARCH != "aarch64" ]] && CONFIG="--disable-neon" - ./configure.py \ --prefix=/usr \ --with-bzip \ @@ -37,9 +34,7 @@ build() { --with-boost \ --with-openssl \ --with-sqlite3 \ - --with-os-feature=getrandom \ - $CONFIG - + --with-os-feature=getrandom make }