wok annotate aria2/receipt @ rev 5893

compcache: fix build with kernel 2.6.34
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Jul 22 23:03:19 2010 +0200 (2010-07-22)
parents e7e6fcecaf07
children a564fb786626
rev   line source
devl547@5217 1 # SliTaz package receipt.
devl547@5217 2
devl547@5217 3 PACKAGE="aria2"
devl547@5516 4 VERSION="1.9.3"
devl547@5217 5 CATEGORY="utilities"
devl547@5217 6 SHORT_DESC="A download utility with resuming and segmented downloading with HTTP/HTTPS/FTP support"
devl547@5217 7 MAINTAINER="devl547@gmail.com"
devl547@5217 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
devl547@5217 9 WEB_SITE="http://aria2.sourceforge.net/"
devl547@5518 10 WGET_URL="http://downloads.sourceforge.net/project/aria2/stable/$PACKAGE-$VERSION/$TARBALL"
devl547@5217 11 BUILD_DEPENDS="zlib-dev gettext"
devl547@5217 12 DEPENDS="zlib"
devl547@5217 13
devl547@5217 14 # Rules to configure and make the package.
devl547@5217 15 compile_rules()
devl547@5217 16 {
devl547@5217 17 cd $src
devl547@5217 18 ./configure --prefix=/usr --infodir=/usr/share/info \
devl547@5217 19 --mandir=/usr/share/man $CONFIGURE_ARGS \
devl547@5217 20 --enable-epoll --enable-threads=posix --with-libz \
devl547@5217 21 --without-sqlite3 --without-openssl &&
devl547@5217 22 make &&
devl547@5217 23 make DESTDIR=$PWD/_pkg install
devl547@5217 24 }
devl547@5217 25
devl547@5217 26 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@5217 27 genpkg_rules()
devl547@5217 28 {
devl547@5217 29 mkdir -p $fs/usr
devl547@5217 30 cp -a $_pkg/usr/bin $fs/usr
devl547@5217 31 }