new: migrate even more packages

This commit is contained in:
ngn
2024-07-21 19:37:19 +03:00
parent 44706f4e3d
commit beea0545f8
44 changed files with 526 additions and 0 deletions

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

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

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

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

23
src/groff/pkg.sh Normal file
View File

@ -0,0 +1,23 @@
# general info
NAME="groff"
DESC="GNU roff"
VERSION="1.23.0"
# required files
FILES=("https://ftp.gnu.org/gnu/groff/groff-${VERSION}.tar.gz")
HASHES=("5e4f40315a22bb8a158748e7d5094c7d")
# install and build depends
DEPENDS=("gcc-libs" "perl")
BUILD=()
build(){
tar xf "${NAME}-${VERSION}.tar.gz"
cd "${NAME}-${VERSION}"
./configure --prefix=/usr
make
make DESTDIR="${ROOTDIR}" install
cd .. && rm -r "${NAME}-${VERSION}"
}