core/acl/Pkgfile

25 lines
604 B
Plaintext
Raw Normal View History

2010-06-03 12:19:14 +02:00
# Description: Access Control Lists library
# URL: http://savannah.nongnu.org/projects/acl
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: attr
name=acl
2018-06-20 01:33:41 +02:00
version=2.2.53
release=3
2018-06-20 01:33:41 +02:00
source=(http://download-mirror.savannah.gnu.org/releases/$name/$name-$version.tar.gz)
2010-06-03 12:19:14 +02:00
build() {
cd $name-$version
./configure --prefix=/usr --bindir=/bin
2010-06-03 12:19:14 +02:00
make
2018-06-20 01:33:41 +02:00
make DESTDIR=$PKG install
2010-06-03 12:19:14 +02:00
install -d $PKG/lib
mv $PKG/usr/lib/libacl.so.* $PKG/lib
ln -sf ../../lib/$(readlink $PKG/usr/lib/libacl.so) $PKG/usr/lib/libacl.so
2015-07-25 19:12:56 +02:00
rm -r $PKG/usr/share/{doc,locale}
2010-06-03 12:19:14 +02:00
}