summaryrefslogtreecommitdiff
path: root/repo/core/groff.xibuild
blob: 83d970a9b033832ae35f631caf07c5b469bb57db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

DEPS=(perl)

SOURCE=https://ftp.gnu.org/gnu/groff/groff-1.22.4.tar.gz
DESC="GNU troff text-formatting system"

build () {
    PAGE=A4 ./configure --prefix=/usr
    make -j1
    make DESTDIR=$PKG_DEST install 
}