wok-stable view axel/receipt @ rev 9619

Up: py3k to 3.2. Added CVE-2011-1521 security fix. Also added pyconfig.h to py3k so python3 works. Nothing depends on this package yet so updating it will not cause any problems.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Apr 18 15:39:33 2011 +0000 (2011-04-18)
parents 5a2f3102bcdd
children
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"
12 TAGS="web internet"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --i18n=0 \
20 $CONFIGURE_ARGS &&
21 make &&
22 make install DESTDIR=$PWD/_pkg
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/etc $fs/
31 }