summaryrefslogtreecommitdiff
path: root/repo/groff/groff.xibuild
blob: 5ee99cf55983745278ba72f783a1a3c8e7eaf951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

MAKEDEPS="make"
DEPS="perl"

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

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

package () {
    make DESTDIR=$PKG_DEST install 
}