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/automake/.gitignore vendored Normal file

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

2
src/automake/changes.md Normal file

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

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}"
}