void-packages/srcpkgs/crypto++/template
2019-09-30 20:18:31 +02:00

40 lines
1 KiB
Bash

# Template file for 'crypto++'
pkgname=crypto++
version=820
revision=1
create_wrksrc=yes
build_style=gnu-makefile
make_build_target="libcryptopp.so libcryptopp.a"
hostmakedepends="unzip"
short_desc="Free C++ class library of cryptographic schemes"
maintainer="Orphaned <orphan@voidlinux.org>"
license="BSL-1.0"
homepage="http://www.cryptopp.com/"
distfiles="http://www.cryptopp.com/cryptopp${version}.zip"
checksum=03f0e2242e11b9d19b28d0ec5a3fa8ed5cc7b27640e6bed365744f593e858058
CXXFLAGS="-DNDEBUG -fPIC"
if [ "$XBPS_CROSS" ]; then
make_build_args="-f GNUmakefile-cross"
fi
post_extract() {
sed -i -e 's/^CXXFLAGS/#CXXFLAGS/' GNUmakefile
}
post_install() {
vinstall ${FILESDIR}/libcrypto++.pc 644 usr/lib/pkgconfig
sed -e "s,@@VERSION@@,${version},g" -i ${DESTDIR}/usr/lib/pkgconfig/libcrypto++.pc
vlicense License.txt LICENSE
}
crypto++-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/*.a
vmove usr/lib/*.so
vmove usr/lib/pkgconfig
}
}