wok-current view help2man/receipt @ rev 16770
Fix loop depends: 1) xorg-libXfont <-> xorg-libXfont; 2) glibmm <-> libgiomm (thanks "tazpkg check").
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Jun 20 00:27:57 2014 +0300 (2014-06-20) |
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 }