#!/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 
}