void-packages/srcpkgs/libcap/template
Nathan Owens 565e0f8f32 libcap: update to 2.28
Update to 2.28 and some template cleanup

Signed-off-by: Nathan Owens <ndowens04@gmail.com>
2019-12-12 14:23:20 +01:00

49 lines
1.2 KiB
Bash

# Template file for 'libcap'
pkgname=libcap
version=2.28
revision=1
bootstrap=yes
build_style=gnu-makefile
make_install_args="SBINDIR=/usr/bin exec_prefix=/usr
LIBDIR=/usr/lib PKGCONFIGDIR=/usr/lib/pkgconfig RAISE_SETFCAP=no"
make_use_env=yes
makedepends="attr-devel"
short_desc="POSIX.1e capabilities suite"
maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-only"
homepage="http://sites.google.com/site/fullycapable/"
distfiles="${KERNEL_SITE}/libs/security/linux-privs/libcap2/${pkgname}-${version}.tar.xz"
checksum=c0e70c3bcce288ada2bfe8d748e816b601590495312222e92e307cf18d6a38aa
if [ "$CHROOT_READY" ]; then
hostmakedepends="perl"
if [ -z "$CROSS_BUILD" ]; then
hostmakedepends+=" gperf"
fi
fi
pre_build() {
vsed -e 's,CC :=,CC ?=,' -i Make.Rules
# Disable tests, as they cause cross-build failure
vsed -e '/test:/,/.sh/d' -e '/tests/d' -i Makefile
}
libcap-devel_package() {
depends="libcap>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/libcap.a
vmove usr/lib/libcap.so
vmove usr/share/man/man3
vmove usr/lib/pkgconfig
}
}
libcap-progs_package() {
short_desc+=" - utilities"
pkg_install() {
vmove usr/bin
vmove usr/share
}
}