wok-next view help2man/receipt @ rev 19985

Close dependency loop mesa17 <--> libva
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Oct 18 13:40:04 2017 +0300 (2017-10-18)
parents 2b9f96603415
children 0e7893ac206d
line source
1 # SliTaz package receipt.
3 PACKAGE="help2man"
4 VERSION="1.47.4"
5 CATEGORY="development"
6 SHORT_DESC="Produces simple manual pages."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/help2man/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="perl-locale-gettext"
15 BUILD_DEPENDS="perl gettext texinfo perl-locale-gettext"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --enable-nls \
22 $CONFIGURE_ARGS &&
23 make && make DESTDIR=$install install
25 # ./configure --prefix=/usr --infodir=/usr/share/info \
26 # --mandir=/usr/share/man $CONFIGURE_ARGS &&
27 # make &&
28 # make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/lib $fs/usr
37 }