wok view axel/receipt @ rev 17974

scilab: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 18 00:25:23 2015 +0200 (2015-04-18)
parents c616ce6b7873
children 7f39549720b8
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 cd $src
19 ./configure --prefix=/usr \
20 --i18n=0 \
21 $CONFIGURE_ARGS &&
22 make &&
23 make install DESTDIR=$DESTDIR
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/etc $fs/
32 }