new: lfs/acl-2.3.2

This commit is contained in:
Yingjie Wang 2024-11-14 01:23:22 -05:00
parent 9b2a509ec6
commit b7c060cf25

24
lfs/acl-2.3.2.PKGBUILD Normal file
View File

@ -0,0 +1,24 @@
pkgname=acl
pkgver=2.3.2
pkgdesc='Access control list utilities, libraries and headers'
homepage='https://savannah.nongnu.org/projects/acl'
license=('LGPL')
sources=("${pkgname}-${pkgver}.tar.xz")
urls=("https://download.savannah.gnu.org/releases/${pkgname}/${sources[0]}")
md5sums=("590765dee95907dbc3c856f7255bd669")
src_prepare() {
tar -xf ${DIST_DIR}/${pkgname}-${pkgver}/${sources[0]} --strip-components=1
}
src_build() {
./configure --prefix=/usr \
--disable-static \
--docdir=/usr/share/doc/${pkgname}-${pkgver}
make
}
src_install() {
make DESTDIR="${pkgdir}" install
}