35 lines
935 B
Bash
35 lines
935 B
Bash
# Template build file for 'libgcrypt'.
|
|
pkgname=libgcrypt
|
|
version=1.8.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--enable-static --without-capabilities"
|
|
makedepends="libgpg-error-devel"
|
|
short_desc="GNU cryptographic library"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="https://www.gnupg.org"
|
|
license="LGPL-2.1"
|
|
distfiles="https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-${version}.tar.bz2"
|
|
checksum=c8064cae7558144b13ef0eb87093412380efa16c4ee30ad12ecb54886a524c07
|
|
|
|
post_configure() {
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
armv[5-6]*)
|
|
sed -i '/HAVE_GCC_INLINE_ASM_NEON 1/d' config.h
|
|
sed -i '/HAVE_GCC_INLINE_ASM_AARCH32_CRYPTO 1/d' config.h
|
|
;;
|
|
esac
|
|
}
|
|
|
|
libgcrypt-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/bin/libgcrypt-config
|
|
vmove usr/include
|
|
vmove usr/share
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/*.a
|
|
}
|
|
}
|