wok view aria2/receipt @ rev 19267

Compress manpages.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jul 04 11:45:47 2016 +0300 (2016-07-04)
parents 8417cbe6fdae
children 11b5e93cb5f2
line source
1 # SliTaz package receipt.
3 PACKAGE="aria2"
4 VERSION="1.18.3"
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://aria2.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="zlib libxml2 gnutls libgcrypt"
14 BUILD_DEPENDS="zlib-dev gettext libxml2-dev gnutls-dev pkg-config gmp-dev \
15 nettle-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS \
21 --enable-epoll --enable-threads=posix --with-libz \
22 --without-sqlite3 --without-openssl &&
23 make && make install
25 cook_compress_manpages
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }