wok-next view aria2/receipt @ rev 20514

ardour, gdal, icu, js, jsoncpp, libvpx, llvm, mesa, minetest, opencv, qt5, scilab, webkit2gtk, webkitgtk, xalan-c: remove std.patch, use `fix math`.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 21 16:15:19 2018 +0200 (2018-03-21)
parents 32c34bb0db31
children dfe25744cfaf
line source
1 # SliTaz package receipt.
3 PACKAGE="aria2"
4 VERSION="1.33.0"
5 CATEGORY="utilities"
6 SHORT_DESC="A download utility with resuming and segmented downloading with HTTP/HTTPS/FTP support"
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://aria2.sourceforge.net/"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="https://github.com/aria2/aria2/releases/download/release-$VERSION/$TARBALL"
13 DEPENDS="zlib libxml2 gnutls libgcrypt"
14 BUILD_DEPENDS="zlib-dev gettext libxml2-dev gnutls-dev gmp-dev nettle-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS \
20 --enable-epoll --enable-threads=posix --with-libz \
21 --without-sqlite3 --without-openssl &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }