wok annotate help2man/receipt @ rev 19025

syslinux/win32.c: fix write sector
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 02 18:58:38 2016 +0200 (2016-04-02)
parents 7c80dceca214
children 917bf829bf94
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@14999 8 LICENSE="GPL3"
pascal@13303 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13303 10 WEB_SITE="http://www.gnu.org/software/$PACKAGE"
pascal@13303 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pascal@13303 12
pascal@13303 13 BUILD_DEPENDS="perl"
pascal@13303 14 DEPENDS="perl"
pascal@13303 15
pascal@13303 16 # Rules to configure and make the package.
pascal@13303 17 compile_rules()
pascal@13303 18 {
pascal@13303 19 cd $src
pascal@13303 20 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@13303 21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@13303 22 make &&
pascal@13303 23 make DESTDIR=$DESTDIR install
pascal@13303 24 }
pascal@13303 25
pascal@13303 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13303 27 genpkg_rules()
pascal@13303 28 {
pascal@13303 29 mkdir -p $fs/usr
pascal@13303 30 cp -a $install/usr/bin $fs/usr
pascal@13303 31 cp -a $install/usr/lib $fs/usr
pascal@13303 32 }
pascal@13303 33