wok-next annotate aria2/receipt @ rev 20889

Check Repology info from y* to z* packages: complete
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Jul 15 10:27:39 2018 +0300 (2018-07-15)
parents 835b3b8ce6ac
children d2950281f122
rev   line source
al@20547 1 # SliTaz package receipt v2.
devl547@5217 2
devl547@5217 3 PACKAGE="aria2"
al@20547 4 VERSION="1.33.1"
devl547@5217 5 CATEGORY="utilities"
al@20547 6 SHORT_DESC="A download utility with resuming and segmented downloading with \
al@20547 7 HTTP/HTTPS/FTP support"
devl547@5217 8 MAINTAINER="devl547@gmail.com"
pascal@15000 9 LICENSE="GPL2"
al@20547 10 WEB_SITE="https://aria2.github.io/"
al@20547 11
pascal@20039 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
pascal@20039 13 WGET_URL="https://github.com/aria2/aria2/releases/download/release-$VERSION/$TARBALL"
slaxemulator@10983 14
al@20513 15 BUILD_DEPENDS="zlib-dev gettext libxml2-dev gnutls-dev gmp-dev nettle-dev"
devl547@5217 16
al@20547 17 compile_rules() {
al@20547 18 ./configure \
al@20547 19 --enable-epoll \
al@20547 20 --enable-threads=posix \
al@20547 21 --with-libz \
al@20547 22 --without-sqlite3 \
al@20547 23 --without-openssl \
al@20547 24 $CONFIGURE_ARGS &&
al@20569 25 fix libtool &&
al@20547 26 make &&
al@20547 27 make install
devl547@5217 28 }
devl547@5217 29
al@20547 30 genpkg_rules() {
al@20547 31 copy @std
al@20799 32 DEPENDS="gmp libgnutls libxml2 nettle zlib"
devl547@5217 33 }