wok view axel/receipt @ rev 22912

gtklp: dirty hack
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 24 11:07:00 2020 +0100 (2020-02-24)
parents 36c11ae1b7bb
children 35292b022843
line source
1 # SliTaz package receipt.
3 PACKAGE="axel"
4 VERSION="2.17.6"
5 CATEGORY="network"
6 TAGS="web internet"
7 SHORT_DESC="Download accelerator."
8 MAINTAINER="rocky@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://github.com/axel-download-accelerator/axel"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$WEB_SITE/releases/download/v$VERSION/$TARBALL"
15 DEPENDS="openssl"
16 BUILD_DEPENDS="openssl-dev"
18 CONFIG_FILES="/etc/axelrc"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --prefix=/usr \
25 --disable-nls \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install DESTDIR=$DESTDIR
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cook_copy_files axel axelrc
35 }