# Maintainer: Alexander F. Rødseth # Contributor: Angel Velasquez # Contributor: Douglas Soares de Andrade # Contributor: d'Ronin # Contributor: Hexchain Tong # Contributor: Jack Lloyd # ALARM: Kevin Mihelich # - disable neon on !AArch64 pkgname=botan pkgver=2.13.0 pkgrel=1 pkgdesc='Crypto library written in C++' arch=(x86_64) url='https://botan.randombit.net/' license=(BSD) makedepends=(python) optdepends=('python: for using botan2.py') validpgpkeys=('621DAF6411E1851C4CF9A2E16211EBF1EFBADFBC') source=("https://botan.randombit.net/releases/Botan-${pkgver}.tar.xz"{,.asc}) sha256sums=('f57ae42a41e1091bca58f44f41addebd9a390b651603952c881ec89d50187e90' 'SKIP') build() { cd "${pkgname^}-$pkgver" [[ $CARCH != "aarch64" ]] && CONFIG="--disable-neon" ./configure.py \ --prefix=/usr \ --with-bzip \ --with-lzma \ --with-zlib \ --with-os-feature=getrandom \ $CONFIG make } check() { cd "${pkgname^}-$pkgver" ./botan-test } package() { DESTDIR="$pkgdir" make -C "${pkgname^}-$pkgver" install install -Dm644 "${pkgname^}-$pkgver/license.txt" \ "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }