void-packages/srcpkgs/p11-kit/template
Nathan Owens ff94a53d15 p11-kit: update to 0.23.21
[ci skip]
2020-11-14 16:03:33 +01:00

40 lines
1.1 KiB
Bash

# Template file for 'p11-kit'
pkgname=p11-kit
version=0.23.21
revision=1
build_style=gnu-configure
configure_args="--with-module-path=/usr/lib/pkcs11"
hostmakedepends="automake libtool pkg-config"
makedepends="gettext-devel libtasn1-devel libffi-devel"
short_desc="Provides a way to load and enumerate PKCS#11 modules"
maintainer="Orphaned <orphan@voidlinux.org>"
license="BSD-3-Clause"
homepage="https://github.com/p11-glue/p11-kit"
distfiles="${homepage}/releases/download/${version}/p11-kit-${version}.tar.xz"
checksum=f1baa493f05ca0d867f06bcb54cbb5cdb28c756db07207b6e18de18a87b10627
conf_files="/etc/pkcs11/pkcs11.conf"
if [ "$CROSS_BUILD" ]; then
hostmakedepends+=" gettext-devel"
fi
pre_configure() {
NOCONFIGURE=1 autoreconf -fi
}
post_install() {
mv ${DESTDIR}/etc/pkcs11/pkcs11.conf.example \
${DESTDIR}/etc/pkcs11/pkcs11.conf
vlicense COPYING
}
p11-kit-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.so"
vmove usr/lib/pkgconfig
vmove usr/share/gtk-doc
}
}