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

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 
}