diff options
author | Lukc <lukc@upyum.com> | 2010-12-12 12:24:41 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-12 12:24:41 +0100 |
commit | 43d35f18c31f12a04932c85980072dd32cdeff8e (patch) | |
tree | fa53c8632916a6df4684f2ac595f1a6398b088f1 /groff/Pkgfile | |
parent | 26f0c69db71c3ec41a7969b009a67e24a647aa0f (diff) | |
download | base-43d35f18c31f12a04932c85980072dd32cdeff8e.tar.gz base-43d35f18c31f12a04932c85980072dd32cdeff8e.tar.bz2 base-43d35f18c31f12a04932c85980072dd32cdeff8e.tar.xz base-43d35f18c31f12a04932c85980072dd32cdeff8e.zip |
Recette de groff mise à jour.
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 } |