wok view aria2/receipt @ rev 12205

Up slitaz-boot-scripts (4.7)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 28 22:59:23 2012 +0200 (2012-03-28)
parents a58947caa92e
children 5c7176d65462
line source
1 # SliTaz package receipt.
3 PACKAGE="aria2"
4 VERSION="1.13.0"
5 CATEGORY="utilities"
6 SHORT_DESC="A download utility with resuming and segmented downloading with HTTP/HTTPS/FTP support"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://aria2.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 DEPENDS="zlib libxml2 gnutls"
13 BUILD_DEPENDS="zlib-dev gettext libxml2-dev gnutls-dev pkg-config gmp-dev \
14 nettle-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure $CONFIGURE_ARGS \
21 --enable-epoll --enable-threads=posix --with-libz \
22 --without-sqlite3 --without-openssl &&
23 make && make 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 }