wok rev 10983

Up: aria2 to 1.13.0.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Oct 12 13:53:39 2011 +0000 (2011-10-12)
parents 4332906b243f
children 44e73ecc5e31
files aria2/receipt
line diff
     1.1 --- a/aria2/receipt	Wed Oct 12 13:50:08 2011 +0000
     1.2 +++ b/aria2/receipt	Wed Oct 12 13:53:39 2011 +0000
     1.3 @@ -1,31 +1,30 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="aria2"
     1.7 -VERSION="1.11.1"
     1.8 +VERSION="1.13.0"
     1.9  CATEGORY="utilities"
    1.10  SHORT_DESC="A download utility with resuming and segmented downloading with HTTP/HTTPS/FTP support"
    1.11  MAINTAINER="devl547@gmail.com"
    1.12  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.13  WEB_SITE="http://aria2.sourceforge.net/"
    1.14  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.15 +
    1.16 +DEPENDS="zlib libxml2 gnutls"
    1.17  BUILD_DEPENDS="zlib-dev gettext libxml2-dev gnutls-dev pkg-config"
    1.18 -DEPENDS="zlib libxml2 gnutls"
    1.19  
    1.20  # Rules to configure and make the package.
    1.21  compile_rules()
    1.22  {
    1.23  	cd $src
    1.24 -	./configure --prefix=/usr --infodir=/usr/share/info \
    1.25 -	--mandir=/usr/share/man $CONFIGURE_ARGS \
    1.26 +	./configure $CONFIGURE_ARGS \
    1.27  	--enable-epoll --enable-threads=posix --with-libz \
    1.28  	--without-sqlite3 --without-openssl &&
    1.29 -	make -j 4 &&
    1.30 -	make DESTDIR=$PWD/_pkg install
    1.31 +	make &&	make install
    1.32  }
    1.33  
    1.34  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.35  genpkg_rules()
    1.36  {
    1.37  	mkdir -p $fs/usr
    1.38 -	cp -a $_pkg/usr/bin $fs/usr
    1.39 +	cp -a $install/usr/bin $fs/usr
    1.40  }