# HG changeset patch # User Christopher Rogers # Date 1318427619 0 # Node ID 8eb251b22e62afe653f44e5a92d15544ba306a46 # Parent 4332906b243feae5c60caa7591a67fbfce089525 Up: aria2 to 1.13.0. diff -r 4332906b243f -r 8eb251b22e62 aria2/receipt --- a/aria2/receipt Wed Oct 12 13:50:08 2011 +0000 +++ b/aria2/receipt Wed Oct 12 13:53:39 2011 +0000 @@ -1,31 +1,30 @@ # SliTaz package receipt. PACKAGE="aria2" -VERSION="1.11.1" +VERSION="1.13.0" CATEGORY="utilities" SHORT_DESC="A download utility with resuming and segmented downloading with HTTP/HTTPS/FTP support" MAINTAINER="devl547@gmail.com" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://aria2.sourceforge.net/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +DEPENDS="zlib libxml2 gnutls" BUILD_DEPENDS="zlib-dev gettext libxml2-dev gnutls-dev pkg-config" -DEPENDS="zlib libxml2 gnutls" # Rules to configure and make the package. compile_rules() { cd $src - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man $CONFIGURE_ARGS \ + ./configure $CONFIGURE_ARGS \ --enable-epoll --enable-threads=posix --with-libz \ --without-sqlite3 --without-openssl && - make -j 4 && - make DESTDIR=$PWD/_pkg install + make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/bin $fs/usr + cp -a $install/usr/bin $fs/usr }