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 | |
parent | 2b8bd3bfbcf33465dae322eded241ed255036c5c (diff) | |
download | base-ac269089f86612d4f333440a6fb44d3e88ff931b.tar.gz base-ac269089f86612d4f333440a6fb44d3e88ff931b.tar.bz2 base-ac269089f86612d4f333440a6fb44d3e88ff931b.tar.xz base-ac269089f86612d4f333440a6fb44d3e88ff931b.zip |
Recette de man mise à jour.
-rw-r--r-- | man/.footprint | 21 | ||||
-rw-r--r-- | man/.sha256sum | 2 | ||||
-rw-r--r-- | man/Pkgfile | 24 |
3 files changed, 28 insertions, 19 deletions
diff --git a/man/.footprint b/man/.footprint index 1d5691a..950d431 100644 --- a/man/.footprint +++ b/man/.footprint @@ -10,15 +10,16 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/man2dvi -rwxr-xr-x root/root usr/bin/man2html -rwxr-xr-x root/root usr/bin/whatis -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man1/ --rw-r--r-- root/root usr/man/man1/apropos.1.gz --rw-r--r-- root/root usr/man/man1/man.1.gz --rw-r--r-- root/root usr/man/man1/man2html.1.gz --rw-r--r-- root/root usr/man/man1/whatis.1.gz -drwxr-xr-x root/root usr/man/man5/ --rw-r--r-- root/root usr/man/man5/man.conf.5.gz -drwxr-xr-x root/root usr/man/man8/ --rw-r--r-- root/root usr/man/man8/makewhatis.8.gz drwxr-xr-x root/root usr/sbin/ -rwxr-xr-- root/root usr/sbin/makewhatis +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/apropos.1.bz2 +-rw-r--r-- root/root usr/share/man/man1/man.1.bz2 +-rw-r--r-- root/root usr/share/man/man1/man2html.1.bz2 +-rw-r--r-- root/root usr/share/man/man1/whatis.1.bz2 +drwxr-xr-x root/root usr/share/man/man5/ +-rw-r--r-- root/root usr/share/man/man5/man.conf.5.bz2 +drwxr-xr-x root/root usr/share/man/man8/ +-rw-r--r-- root/root usr/share/man/man8/makewhatis.8.bz2 diff --git a/man/.sha256sum b/man/.sha256sum new file mode 100644 index 0000000..9161153 --- /dev/null +++ b/man/.sha256sum @@ -0,0 +1,2 @@ +04c8abfbb7ff10e5b5acfdd4289ab49c733cdb5967e5542dc76d11b8ef98cca2 makewhatis +9f208c7e1981371ad4481d6e6c2c566bc726a15778723f94136d220fb9375f6c man-1.6f.tar.gz 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 } |