28 lines
587 B
Plaintext
28 lines
587 B
Plaintext
# Description: Access Control Lists library
|
|
# URL: https://savannah.nongnu.org/projects/acl
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: attr
|
|
|
|
name=acl
|
|
version=2.3.1
|
|
release=1
|
|
source=(https://download-mirror.savannah.gnu.org/releases/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--bindir=/bin \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
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
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|