wok-stable view axel/receipt @ rev 3543

Add axel tools
author Liu Peng <rocky@slitaz.org>
date Tue Jun 23 11:52:01 2009 +0800 (2009-06-23)
parents
children c616ce6b7873
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://axel.alioth.debian.org"
10 WGET_URL="http://alioth.debian.org/frs/download.php/3015/$TARBALL"
11 CONFIG_FILES="/etc/axelrc"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr \
18 --i18n=0 \
19 $CONFIGURE_ARGS &&
20 make &&
21 make install DESTDIR=$PWD/_pkg
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/etc $fs/
30 }