wok annotate help2man/receipt @ rev 14908

slitaz-i18n: rewrite locale-pack.functions; slitaz-configs: now generate openbox desktop menu using po files; locale-*: update using new locale-pack.functions (FIXME: post_remove)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Aug 03 17:37:48 2013 +0300 (2013-08-03)
parents
children 2b9f96603415
rev   line source
pascal@13303 1 # SliTaz package receipt.
pascal@13303 2
pascal@13303 3 PACKAGE="help2man"
pascal@13303 4 VERSION="1.40.12"
pascal@13303 5 CATEGORY="development"
pascal@13303 6 SHORT_DESC="Produces simple manual pages."
pascal@13303 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@13303 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13303 9 WEB_SITE="http://www.gnu.org/software/$PACKAGE"
pascal@13303 10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pascal@13303 11
pascal@13303 12 BUILD_DEPENDS="perl"
pascal@13303 13 DEPENDS="perl"
pascal@13303 14
pascal@13303 15 # Rules to configure and make the package.
pascal@13303 16 compile_rules()
pascal@13303 17 {
pascal@13303 18 cd $src
pascal@13303 19 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@13303 20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@13303 21 make &&
pascal@13303 22 make DESTDIR=$DESTDIR install
pascal@13303 23 }
pascal@13303 24
pascal@13303 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13303 26 genpkg_rules()
pascal@13303 27 {
pascal@13303 28 mkdir -p $fs/usr
pascal@13303 29 cp -a $install/usr/bin $fs/usr
pascal@13303 30 cp -a $install/usr/lib $fs/usr
pascal@13303 31 }
pascal@13303 32