wok-next view aria2/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="aria2"
4 VERSION="1.35.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="gettext-dev gmp-dev gnutls-dev libxml2-dev nettle-dev zlib-dev"
17 compile_rules()
18 {
19 ./configure \
20 --enable-epoll \
21 --enable-threads=posix \
22 --with-libz \
23 --without-openssl \
24 --without-sqlite3 \
25 $CONFIGURE_ARGS &&
26 fix libtool &&
27 make &&
28 make install
29 }
31 genpkg_rules()
32 {
33 copy @std
34 DEPENDS="gmp libgnutls libxml2 nettle zlib"
35 }