diff options
Diffstat (limited to 'groff/Pkgfile')
-rw-r--r-- | groff/Pkgfile | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/groff/Pkgfile b/groff/Pkgfile index f499abb..dbd3cb7 100644 --- a/groff/Pkgfile +++ b/groff/Pkgfile @@ -1,22 +1,24 @@ -description="The GNU troff text-formatting system" -packager="" -maintainer="CRUX System Team, core-ports at crux dot nu" +description="The GNU troff text-formatting system." +packager="CRUX System Team <core-ports AT crux DOT nu>" +maintainer="Lukc <lukc AT upyum DOT com>" url="http://www.gnu.org/software/groff/groff.html" depends=() name=groff version=1.20.1 release=1 -source=(http://ftp.gnu.org/gnu/groff/groff-1.20.1.tar.gz) +source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz) build () { - cd $name-$version; - touch doc/gnu.eps; - ./configure --prefix=/usr --mandir=/usr/man --without-x; - make; - 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 + cd $name-$version; + touch doc/gnu.eps; + ./configure \ + --prefix=$prefix \ + --mandir=$mandir \ + --without-x; + make; + make DESTDIR=$PKG install; + ln -sf eqn $PKG$prefix/bin/geqn; + ln -sf tbl $PKG$prefix/bin/gtbl; + ln -sf soelim $PKG$prefix/bin/zsoelim } |