wok-next view aria2/receipt @ rev 21470

updated totem-pl-parser (3.26.0 -> 3.26.5)
author Hans-G?nter Theisgen
date Wed May 13 08:02:17 2020 +0100 (2020-05-13)
parents d2950281f122
children 529467fecaaa
line source
1 # SliTaz package receipt v2.
3 PACKAGE="aria2"
4 VERSION="1.34.0"
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-dev 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 }