new: more package migrations

This commit is contained in:
ngn
2024-07-20 22:52:09 +03:00
parent 983ddd9a38
commit e46f384f6c
69 changed files with 727 additions and 0 deletions

3
src/acl/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/acl/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 2.3.2
First version

24
src/acl/pkg.sh Normal file
View File

@ -0,0 +1,24 @@
# general info
NAME="acl"
DESC="Commands for manipulating POSIX Access Control Lists"
VERSION="2.3.2"
# required files
FILES=("https://download.savannah.gnu.org/releases/acl/acl-${VERSION}.tar.xz")
HASHES=("590765dee95907dbc3c856f7255bd669")
# install and build depends
DEPENDS=("glibc")
BUILD=("attr")
build(){
tar xf "${NAME}-${VERSION}.tar.xz"
cd "${NAME}-${VERSION}"
./configure --prefix=/usr \
--disable-static \
--docdir="/usr/share/doc/acl-${VERSION}"
make && make DESTDIR="${ROOTDIR}" install
cd .. && rm -r "${NAME}-${VERSION}"
}