wok annotate help2man/receipt @ rev 15566
Up: thunderbird-langpack-sv_SE (17.0.11esr)
author | Dominique Corbex <domcox@slitaz.org> |
---|---|
date | Sun Nov 24 17:37:52 2013 +0100 (2013-11-24) |
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 |