diff options
author | Lukc <lukc@upyum.com> | 2010-12-12 16:22:02 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-12 16:22:02 +0100 |
commit | ac269089f86612d4f333440a6fb44d3e88ff931b (patch) | |
tree | 830dbc2885d22da7629f7e3d17b8c277d6c0cf86 /man/Pkgfile | |
parent | 2b8bd3bfbcf33465dae322eded241ed255036c5c (diff) | |
download | base-ac269089f86612d4f333440a6fb44d3e88ff931b.tar.gz base-ac269089f86612d4f333440a6fb44d3e88ff931b.tar.bz2 base-ac269089f86612d4f333440a6fb44d3e88ff931b.tar.xz base-ac269089f86612d4f333440a6fb44d3e88ff931b.zip |
Recette de man mise à jour.
Diffstat (limited to 'man/Pkgfile')
-rw-r--r-- | man/Pkgfile | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/man/Pkgfile b/man/Pkgfile index 95a8c30..68f4a83 100644 --- a/man/Pkgfile +++ b/man/Pkgfile @@ -1,18 +1,24 @@ -description="The man page suite used to read most of the documentation for Linux" -packager="" -maintainer="CRUX System Team, core-ports at crux dot nu" +description="The man page suite used to read most of the documentation for Linux." +packager="CRUX System Team <core-ports AT crux DOT nu>" +maintainer="Lukc <lukc AT upyum DOT com>" url="http://primates.ximian.com/~flucifredi/man/" depends=() name=man version=1.6f release=1 -source=(http://www.ibiblio.org/pub/Linux/apps/doctools/man/man-1.6f.tar.gz makewhatis) +source=(http://www.ibiblio.org/pub/Linux/apps/doctools/$name/$name-$version.tar.gz makewhatis) build () { - cd $name-$version; - ./configure -prefix=/usr -confdir=/etc -mandir=/usr/man -compatibility_mode_for_colored_groff +lang none -default; - make; - make PREFIX=$PKG install; - install -D -m 755 $SRC/makewhatis $PKG/etc/cron/daily/makewhatis + cd $name-$version; + ./configure \ + -prefix=$prefix \ + -confdir=$sysconfdir \ + -mandir=$mandir \ + -compatibility_mode_for_colored_groff \ + +lang none \ + -default; + make; + make PREFIX=$PKG install; + install -D -m 755 $SRC/makewhatis $PKG/etc/cron/daily/makewhatis } |