core/acl/Pkgfile

31 lines
731 B
Plaintext
Raw Normal View History

2010-06-03 10:19:14 +00: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
2018-06-20 13:21:50 +02:00
release=2
2018-06-20 01:33:41 +02:00
source=(http://download-mirror.savannah.gnu.org/releases/$name/$name-$version.tar.gz)
2010-06-03 10:19:14 +00:00
build() {
cd $name-$version
export DEBUG=-DNDEBUG
export OPTIMIZER=$CFLAGS
./configure --prefix=/usr \
--bindir=/bin \
2018-06-20 13:21:50 +02:00
--libdir=/lib \
2015-07-25 19:12:56 +02:00
--libexecdir=/usr/lib
2010-06-03 10:19:14 +00:00
make
2018-06-20 01:33:41 +02:00
make DESTDIR=$PKG install
2010-06-03 10:19:14 +00:00
2018-06-20 13:21:50 +02:00
install -d m755 $PKG/usr/lib
mv $PKG/lib/libacl.*a $PKG/usr/lib/
2018-06-20 01:33:41 +02:00
chmod 644 $PKG/usr/lib/libacl.la
2015-07-25 19:12:56 +02:00
rm -r $PKG/usr/share/{doc,locale}
2018-06-20 13:21:50 +02:00
rm -r $PKG/lib/pkgconfig
2010-06-03 10:19:14 +00:00
}