void-packages/srcpkgs/libcap-ng/template

59 lines
1.5 KiB
Bash

# Template file for 'libcap-ng'
pkgname=libcap-ng
version=0.7.6
revision=2
build_style=gnu-configure
hostmakedepends="python-devel python3.4-devel swig"
short_desc="An alternate POSIX capabilities library"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="http://people.redhat.com/sgrubb/libcap-ng/"
license="GPL-2, LGPL-2.1"
distfiles="http://people.redhat.com/sgrubb/$pkgname/$pkgname-$version.tar.gz"
checksum=9de3caebcc6248f3e9f8c278068253dee89c39d7ffcd284a10fc6ce2b06a2dff
subpackages="libcap-ng-devel libcap-ng-progs libcap-ng-python libcap-ng-python3.4"
if [ "$CROSS_BUILD" ]; then
subpackages="${subpackages/libcap-ng-python/}"
subpackages="${subpackages/libcap-ng-python3.4/}"
configure_args+=" --without-python"
fi
libcap-ng-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
vmove usr/share/man/man3
vmove usr/share/aclocal
}
}
libcap-ng-progs_package() {
short_desc+=" - utilities"
pkg_install() {
vmove usr/bin
vmove usr/share
}
}
libcap-ng-python3.4_package() {
lib32disabled=yes
short_desc+=" - python3.4 bindings"
depends="python3.4"
pycompile_module="capng"
pycompile_version="3.4"
pkg_install() {
vmove "usr/lib/python3.4"
}
}
libcap-ng-python_package() {
lib32disabled=yes
short_desc+=" - python bindings"
depends="python"
pycompile_module="capng"
pkg_install() {
vmove "usr/lib/python2*"
}
}