mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
63 lines
1.6 KiB
Bash
63 lines
1.6 KiB
Bash
# $Id$
|
|
# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>
|
|
# Contributor: Angel Velasquez <angvp@archlinux.org>
|
|
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
|
|
# Contributor: d'Ronin <daronin@2600.com>
|
|
# Contributor: Hexchain Tong <richard0053@gmail.com>
|
|
# Contributor: Jack Lloyd <jack@randombit.net>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - AArch64 patch
|
|
# - disable neon on !AArch64
|
|
|
|
pkgname=botan
|
|
pkgver=2.8.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}.tgz"{,.asc}
|
|
'0001-aarch64-support.patch')
|
|
sha256sums=('e7159b127e91e0c158245d61c638c50d443ec7b440b6b0161328c47b3aba3960'
|
|
'SKIP'
|
|
'0e279e3b16e115e26f5dc1edf02a4082f063134513aaf6ad1fbd10a1d2624e37')
|
|
|
|
prepare() {
|
|
cd "${pkgname^}-$pkgver"
|
|
|
|
patch -p1 -i ../0001-aarch64-support.patch
|
|
}
|
|
|
|
build() {
|
|
cd "${pkgname^}-$pkgver"
|
|
|
|
[[ $CARCH != "aarch64" ]] && CONFIG="--disable-neon"
|
|
|
|
# botan benefits from -O3. Upstream is using it.
|
|
CXXFLAGS="$CXXFLAGS -O3" ./configure.py \
|
|
--prefix=/usr \
|
|
--with-bzip \
|
|
--with-lzma \
|
|
--with-zlib \
|
|
$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"
|
|
}
|
|
|
|
# getver: github.com/randombit/botan
|
|
# vim: ts=2 sw=2 et:
|