wok annotate aria2/receipt @ rev 6215

Up: libnice, libnice-dev to 0.0.13.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Sep 11 16:33:27 2010 +0000 (2010-09-11)
parents 5e5d7c15e143
children 6c5a7ccc834c
rev   line source
devl547@5217 1 # SliTaz package receipt.
devl547@5217 2
devl547@5217 3 PACKAGE="aria2"
slaxemulator@6159 4 VERSION="1.10.2"
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 }