217e7d31f2
After more than a year the switch to python3 packages, it is time to say them goodbye. So long, and thanks for all the fish.
58 lines
1.4 KiB
Bash
58 lines
1.4 KiB
Bash
# Template file for 'libcap-ng'
|
|
pkgname=libcap-ng
|
|
version=0.7.8
|
|
revision=3
|
|
build_style=gnu-configure
|
|
configure_args="--without-python"
|
|
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=c21af997445cd4107a55d386f955c5ea6f6e96ead693e9151277c0ab5f97d05f
|
|
|
|
subpackages="libcap-ng-devel libcap-ng-progs"
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
subpackages+=" libcap-ng-python libcap-ng-python3"
|
|
hostmakedepends="python-devel python3-devel swig"
|
|
configure_args+=" --with-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_package() {
|
|
lib32disabled=yes
|
|
short_desc+=" - Python3 bindings"
|
|
depends="python3"
|
|
pycompile_module="capng.py"
|
|
pkg_install() {
|
|
vmove ${py3_sitelib}
|
|
}
|
|
}
|
|
libcap-ng-python_package() {
|
|
lib32disabled=yes
|
|
short_desc+=" - Python2 bindings"
|
|
depends="python"
|
|
pycompile_module="capng.py"
|
|
pkg_install() {
|
|
vmove ${py2_sitelib}
|
|
}
|
|
}
|