update: rename lfs-12.2 to lfs

This commit is contained in:
2025-03-14 01:33:44 -04:00
parent 02fd8b18b8
commit a4b9b9fdc5
56 changed files with 0 additions and 0 deletions

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
}