wok-next view aria2/receipt @ rev 20663

Fix web site for the Shimmer Project themes
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu May 10 22:58:32 2018 +0300 (2018-05-10)
parents dfe25744cfaf
children b156aee559a7
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="zlib libxml2 gnutls libgcrypt"
33 }