2009-12-02 22:06:56 +01:00
|
|
|
# Template file for 'libcap-ng'
|
|
|
|
pkgname=libcap-ng
|
2014-01-11 12:43:32 +01:00
|
|
|
version=0.7.3
|
|
|
|
revision=1
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2013-04-26 05:32:43 +02:00
|
|
|
hostmakedepends="python-devel swig"
|
2010-10-29 16:28:59 +02:00
|
|
|
short_desc="An alternate POSIX capabilities library"
|
2009-12-02 22:06:56 +01:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-07-09 17:58:05 +02:00
|
|
|
homepage="http://people.redhat.com/sgrubb/libcap-ng/"
|
|
|
|
license="GPL-2, LGPL-2.1"
|
2012-08-13 10:10:48 +02:00
|
|
|
distfiles="http://people.redhat.com/sgrubb/$pkgname/$pkgname-$version.tar.gz"
|
2014-01-11 12:43:32 +01:00
|
|
|
checksum=5ca441c8d3a1e4cfe8a8151907977662679457311ccaa7eaac91447c33a35bb1
|
2013-04-13 10:15:49 +02:00
|
|
|
|
2013-04-26 05:32:43 +02:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
|
|
unset hostmakedepends
|
|
|
|
configure_args+=" --without-python"
|
|
|
|
fi
|
|
|
|
|
2013-04-13 10:15:49 +02:00
|
|
|
libcap-ng-devel_package() {
|
2014-01-11 11:40:28 +01:00
|
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
|
|
short_desc+=" - development files"
|
2013-04-13 10:15:49 +02:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include
|
|
|
|
vmove usr/lib/pkgconfig
|
|
|
|
vmove "usr/lib/*.a"
|
2014-01-11 11:40:28 +01:00
|
|
|
vmove "usr/lib/*.so"
|
2013-04-13 10:15:49 +02:00
|
|
|
vmove usr/share/man/man3
|
|
|
|
vmove usr/share/aclocal
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
libcap-ng-progs_package() {
|
2014-01-11 11:40:28 +01:00
|
|
|
short_desc+=" - utilities"
|
2013-04-13 10:15:49 +02:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/bin
|
|
|
|
vmove usr/share
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-26 05:32:43 +02:00
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
2014-01-01 16:10:11 +01:00
|
|
|
libcap-ng-python_package() {
|
2014-01-11 11:40:28 +01:00
|
|
|
short_desc+=" - python bindings"
|
2014-01-01 16:10:11 +01:00
|
|
|
depends="python"
|
|
|
|
pycompile_module="capng"
|
|
|
|
pkg_install() {
|
|
|
|
vmove "usr/lib/python*"
|
|
|
|
}
|
2013-04-13 10:15:49 +02:00
|
|
|
}
|
2013-04-26 05:32:43 +02:00
|
|
|
fi
|