26 lines
720 B
Plaintext
26 lines
720 B
Plaintext
# Description: POSIX.1e capabilities library
|
|
# URL: http://sites.google.com/site/fullycapable/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: attr
|
|
|
|
name=libcap
|
|
version=2.25
|
|
release=2
|
|
source=(https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/$name-$version.tar.xz
|
|
$name-$version-gperf.patch)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
|
|
patch -p1 -i $SRC/$name-$version-gperf.patch
|
|
sed -i "/^CFLAGS/s/-O2/$CFLAGS/" Make.Rules
|
|
|
|
make
|
|
make RAISE_SETFCAP=no DESTDIR=$PKG man_prefix=/usr/share install
|
|
|
|
install -d $PKG/usr/lib
|
|
mv $PKG/lib/libcap.a $PKG/usr/lib
|
|
rm $PKG/lib/libcap.so
|
|
ln -s ../../lib/libcap.so.$version $PKG/usr/lib/libcap.so
|
|
}
|