# Description: The GNU troff text-formatting system
# URL: http://www.gnu.org/software/groff/groff.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
# Depends on:

name=groff
version=1.21
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)

build() {
  cd $name-$version
  cat > config.cache << EOF
ac_try_echo=yes
EOF
  pushd src/libs/gnulib
  ./configure --build=$CHOST \
              --host=$CTARGET \
              --prefix=/usr \
              --mandir=/usr/man \
              --without-x \
              --cache-file=config.cache
  popd
  ./configure --build=$CHOST \
              --host=$CTARGET \
              --prefix=/usr \
              --mandir=/usr/man \
              --without-x \
              --cache-file=config.cache
  make TROFFBIN=troff GROFFBIN=groff GROFF_BIN_PATH=
  make DESTDIR=$PKG install

  rm -rf $PKG/usr/share/{info,doc}
  ln -sf eqn $PKG/usr/bin/geqn
  ln -sf tbl $PKG/usr/bin/gtbl
  ln -sf soelim $PKG/usr/bin/zsoelim
}