core/libcap/Pkgfile

26 lines
720 B
Plaintext
Raw Normal View History

2010-06-03 12:23:01 +02:00
# Description: POSIX.1e capabilities library
2011-11-19 17:48:24 +01:00
# URL: http://sites.google.com/site/fullycapable/
2010-06-03 12:23:01 +02:00
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: attr
name=libcap
2016-01-31 15:57:39 +01:00
version=2.25
2017-02-14 17:05:53 +01:00
release=2
source=(https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/$name-$version.tar.xz
$name-$version-gperf.patch)
2010-06-03 12:23:01 +02:00
build () {
2017-02-14 17:05:53 +01:00
cd $name-$version
2010-06-03 12:23:01 +02:00
2017-02-14 17:05:53 +01:00
patch -p1 -i $SRC/$name-$version-gperf.patch
2011-07-27 10:21:56 +02:00
sed -i "/^CFLAGS/s/-O2/$CFLAGS/" Make.Rules
2010-06-03 12:23:01 +02:00
make
make RAISE_SETFCAP=no DESTDIR=$PKG man_prefix=/usr/share install
2010-06-03 12:23:01 +02:00
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
}