new: more package migrations
This commit is contained in:
3
src/acl/.gitignore
vendored
Normal file
3
src/acl/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/acl/changes.md
Normal file
2
src/acl/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 2.3.2
|
||||
First version
|
24
src/acl/pkg.sh
Normal file
24
src/acl/pkg.sh
Normal 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}"
|
||||
}
|
Reference in New Issue
Block a user