wok-next annotate aria2/receipt @ rev 5326
Up curl (7.20.1) add IMAP, POP et SMTP support
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Apr 23 08:33:42 2010 +0200 (2010-04-23) |
parents | |
children | c2726b062b9c |
rev | line source |
---|---|
devl547@5217 | 1 # SliTaz package receipt. |
devl547@5217 | 2 |
devl547@5217 | 3 PACKAGE="aria2" |
devl547@5217 | 4 VERSION="1.9.0" |
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@5217 | 10 WGET_URL="http://downloads.sourceforge.net/project/aria2/stable/latest/$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 } |