wok-next view aria2/receipt @ rev 20837

lua: add SHA1sum
author Erkan Yilmaz <erkan@slitaz.org>
date Sun Jun 17 19:28:49 2018 +0000 (2018-06-17)
parents 835b3b8ce6ac
children d2950281f122
line source
1 # SliTaz package receipt v2.
3 PACKAGE="aria2"
4 VERSION="1.33.1"
5 CATEGORY="utilities"
6 SHORT_DESC="A download utility with resuming and segmented downloading with \
7 HTTP/HTTPS/FTP support"
8 MAINTAINER="devl547@gmail.com"
9 LICENSE="GPL2"
10 WEB_SITE="https://aria2.github.io/"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="https://github.com/aria2/aria2/releases/download/release-$VERSION/$TARBALL"
15 BUILD_DEPENDS="zlib-dev gettext libxml2-dev gnutls-dev gmp-dev nettle-dev"
17 compile_rules() {
18 ./configure \
19 --enable-epoll \
20 --enable-threads=posix \
21 --with-libz \
22 --without-sqlite3 \
23 --without-openssl \
24 $CONFIGURE_ARGS &&
25 fix libtool &&
26 make &&
27 make install
28 }
30 genpkg_rules() {
31 copy @std
32 DEPENDS="gmp libgnutls libxml2 nettle zlib"
33 }