mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
31 lines
731 B
Text
31 lines
731 B
Text
# Contributor: August Klein <amatcoder@gmail.com>
|
|
# Maintainer: August Klein <amatcoder@gmail.com>
|
|
pkgname=crypto++
|
|
_pkgname=cryptopp
|
|
pkgver=8.7.0
|
|
_pkgver=${pkgver//./}
|
|
pkgrel=0
|
|
pkgdesc="A free C++ class library of cryptographic schemes"
|
|
url="https://www.cryptopp.com/"
|
|
arch="all !x86" # ftbfs
|
|
license="BSL-1.0"
|
|
depends_dev="$pkgname"
|
|
subpackages="$pkgname-dev"
|
|
source="https://www.cryptopp.com/$_pkgname$_pkgver.zip"
|
|
builddir="$srcdir"
|
|
|
|
build() {
|
|
make dynamic libcryptopp.pc
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" PREFIX="/usr" install-lib
|
|
}
|
|
|
|
sha512sums="
|
|
cb85e10118b247be016b40ecf79cf3ff933a174e2e3d9280c426e57eb1ad936db42eafc19a30ec9bf5d7f08c335b1fee4dc149e1bda00d44d40d84d010f6af11 cryptopp870.zip
|
|
"
|