new: more package migrations
This commit is contained in:
src
acl
attr
autoconf
automake
bc
binutils
bison
check
coreutils
dejagnu
dhcpcd
diffutils
dosfstools
e2fsprogs
efibootmgr
efivar
expat
expect
file
findutils
flex
flit-core
libseccomp
3
src/automake/.gitignore
vendored
Normal file
3
src/automake/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/automake/changes.md
Normal file
2
src/automake/changes.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# 1.16.5
|
||||
First version
|
22
src/automake/pkg.sh
Normal file
22
src/automake/pkg.sh
Normal file
@@ -0,0 +1,22 @@
|
||||
# general info
|
||||
NAME="automake"
|
||||
DESC="Tool for automatically generating Makefile.in files compliant with the GNU Coding Standards"
|
||||
VERSION="1.16.5"
|
||||
|
||||
# required files
|
||||
FILES=("https://ftp.gnu.org/gnu/automake/automake-${VERSION}.tar.xz")
|
||||
HASHES=("4017e96f89fca45ca946f1c5db6be714")
|
||||
|
||||
# install and build depends
|
||||
DEPENDS=("bash" "perl")
|
||||
BUILD=()
|
||||
|
||||
build(){
|
||||
tar xf "${NAME}-${VERSION}.tar.xz"
|
||||
cd "${NAME}-${VERSION}"
|
||||
|
||||
./configure --prefix=/usr --docdir="/usr/share/doc/automake-${VERSION}"
|
||||
make && make DESTDIR="${ROOTDIR}" install
|
||||
|
||||
cd .. && rm -r "${NAME}-${VERSION}"
|
||||
}
|
Reference in New Issue
Block a user