wok view axel/receipt @ rev 19269

Compress manpages.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jul 04 14:47:05 2016 +0300 (2016-07-04)
parents 408c87fa22ca
children 11b5e93cb5f2
line source
1 # SliTaz package receipt.
3 PACKAGE="axel"
4 VERSION="2.4"
5 CATEGORY="network"
6 SHORT_DESC="Download accelerator."
7 MAINTAINER="rocky@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://axel.alioth.debian.org"
11 WGET_URL="http://alioth.debian.org/frs/download.php/3015/$TARBALL"
12 CONFIG_FILES="/etc/axelrc"
13 TAGS="web internet"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure --prefix=/usr \
19 --i18n=0 \
20 $CONFIGURE_ARGS &&
21 make &&
22 make install DESTDIR=$DESTDIR
24 cook_compress_manpages
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/etc $fs/
33 }