17 lines
447 B
Text
Executable file
17 lines
447 B
Text
Executable file
# Description: Programs for processing and formatting text
|
|
# URL: https://www.gnu.org/software/groff/groff.html
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
# Depends on: gcc perl
|
|
|
|
name=groff
|
|
version=1.22.4
|
|
release=1
|
|
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
PAGE=A4 ./configure --prefix=/usr
|
|
make || make -j1
|
|
make DESTDIR=$PKG install
|
|
}
|