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