# HG changeset patch # User Pascal Bellard # Date 1346230293 -7200 # Node ID 8347d0329fcbcd73a0c3b2c67e218385210afe77 # Parent 7b67c03453fc2dd2976972447ade8a2e60191320 Move from undigest help2man diff -r 7b67c03453fc -r 8347d0329fcb help2man/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/help2man/receipt Wed Aug 29 10:51:33 2012 +0200 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="help2man" +VERSION="1.40.12" +CATEGORY="development" +SHORT_DESC="Produces simple manual pages." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.gnu.org/software/$PACKAGE" +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" + +BUILD_DEPENDS="perl" +DEPENDS="perl" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --infodir=/usr/share/info \ + --mandir=/usr/share/man $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib $fs/usr +} +