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