wok rev 24640
updated help2man (1.47.12 -> 1.49.1)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 09 15:53:44 2022 +0100 (2022-03-09) |
parents | 7f6cddcf47fe |
children | 4795431532c1 |
files | help2man/description.txt help2man/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/help2man/description.txt Wed Mar 09 15:53:44 2022 +0100 1.3 @@ -0,0 +1,13 @@ 1.4 +Help2man is a tool for automatically generating simple manual pages 1.5 +from program output. 1.6 + 1.7 +Although manual pages are optional for GNU programs other projects, 1.8 +such as Debian require them (see Man Pages in GNU Coding Standards). 1.9 + 1.10 +This program is intended to provide an easy way for software authors 1.11 +to include a manual page in their distribution without having to 1.12 +maintain that document. 1.13 + 1.14 +Given a program which produces reasonably standard "--help" and 1.15 +"--version" outputs, help2man can re-arrange that output into 1.16 +something which resembles a manual page.
2.1 --- a/help2man/receipt Wed Mar 09 15:36:39 2022 +0100 2.2 +++ b/help2man/receipt Wed Mar 09 15:53:44 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="help2man" 2.7 -VERSION="1.47.12" 2.8 +VERSION="1.49.1" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Produces simple manual pages." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 @@ -11,8 +11,8 @@ 2.13 TARBALL="$PACKAGE-$VERSION.tar.xz" 2.14 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 2.15 2.16 +DEPENDS="perl" 2.17 BUILD_DEPENDS="perl" 2.18 -DEPENDS="perl" 2.19 2.20 # What is the latest version available today? 2.21 current_version() 2.22 @@ -30,14 +30,13 @@ 2.23 --mandir=/usr/share/man \ 2.24 $CONFIGURE_ARGS && 2.25 make && 2.26 - make DESTDIR=$DESTDIR install 2.27 + make install DESTDIR=$DESTDIR 2.28 } 2.29 2.30 # Rules to gen a SliTaz package suitable for Tazpkg. 2.31 genpkg_rules() 2.32 { 2.33 - mkdir -p $fs/usr 2.34 - 2.35 - cp -a $install/usr/bin $fs/usr 2.36 - cp -a $install/usr/lib $fs/usr 2.37 + # 1.49.1 not created 2.38 +# cp -a $install/usr/lib $fs/usr 2.39 + cook_copy_folders bin 2.40 }