core/acl/Pkgfile

28 lines
585 B
Plaintext
Raw Normal View History

2010-06-03 12:19:14 +02:00
# Description: Access Control Lists library
2021-03-12 18:12:29 +01:00
# URL: http://savannah.nongnu.org/projects/acl
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: attr
2010-06-03 12:19:14 +02:00
name=acl
2021-03-16 14:57:04 +01:00
version=2.3.1
2021-03-12 18:12:29 +01:00
release=1
source=(http://download-mirror.savannah.gnu.org/releases/$name/$name-$version.tar.xz)
2010-06-03 12:19:14 +02:00
build() {
2021-03-12 18:12:29 +01:00
cd $name-$version
2010-06-03 12:19:14 +02:00
2021-03-12 18:12:29 +01:00
./configure \
--prefix=/usr \
--bindir=/bin \
--disable-nls
2010-06-03 12:19:14 +02:00
2021-03-12 18:12:29 +01:00
make
make DESTDIR=$PKG install
2010-06-03 12:19:14 +02:00
2021-03-12 18:12:29 +01: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
2021-03-12 18:12:29 +01:00
rm -r $PKG/usr/share/doc
2010-06-03 12:19:14 +02:00
}