wok-6.x annotate aria2/receipt @ rev 21598
audacity: variable LIBS replaced by LDFLAGS
author | Hans-G?nter Theisgen |
---|---|
date | Tue May 21 17:15:19 2019 +0100 (2019-05-21) |
parents | 06e7758ce6d8 |
children | 25c31588cf2d |
rev | line source |
---|---|
devl547@5217 | 1 # SliTaz package receipt. |
devl547@5217 | 2 |
devl547@5217 | 3 PACKAGE="aria2" |
slaxemulator@15807 | 4 VERSION="1.18.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" |
pascal@15000 | 8 LICENSE="GPL2" |
hackdorte@20008 | 9 # WEB_SITE="http://aria2.sourceforge.net/" |
hackdorte@20008 | 10 WEB_SITE="https://aria2.github.io/" |
devl547@5217 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
slaxemulator@7563 | 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
slaxemulator@10983 | 13 |
pascal@15531 | 14 DEPENDS="zlib libxml2 gnutls libgcrypt" |
pascal@11378 | 15 BUILD_DEPENDS="zlib-dev gettext libxml2-dev gnutls-dev pkg-config gmp-dev \ |
pascal@20602 | 16 nettle-dev libgnutls" |
devl547@5217 | 17 |
devl547@5217 | 18 # Rules to configure and make the package. |
devl547@5217 | 19 compile_rules() |
devl547@5217 | 20 { |
slaxemulator@10983 | 21 ./configure $CONFIGURE_ARGS \ |
devl547@5217 | 22 --enable-epoll --enable-threads=posix --with-libz \ |
devl547@5217 | 23 --without-sqlite3 --without-openssl && |
al@19267 | 24 make && make install |
devl547@5217 | 25 } |
devl547@5217 | 26 |
devl547@5217 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@5217 | 28 genpkg_rules() |
devl547@5217 | 29 { |
devl547@5217 | 30 mkdir -p $fs/usr |
slaxemulator@10983 | 31 cp -a $install/usr/bin $fs/usr |
devl547@5217 | 32 } |