wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="help2man"
4 VERSION="1.40.12"
5 CATEGORY="development"
6 SHORT_DESC="Produces simple manual pages."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/$PACKAGE"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 BUILD_DEPENDS="perl"
14 DEPENDS="perl"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib $fs/usr
32 }