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

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 
}