blob: 6406635701c29e564e60b54ca3f29c266b96a5f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
description="Axel tries to accelerate downloads by using multiple connections (possibly to multiple servers) for one download."
packager="piernov <piernov AT piernov DOT org>"
maintainer="piernov <piernov AT piernov DOT org>"
url="http://axel.alioth.debian.org/"
depends=()
name=axel
version=2.4
release=1
source=(https://alioth.debian.org/frs/download.php/3016/$name-$version.tar.bz2)
build ()
{
if use nls; then
i18n=1
fi
cd $name-$version;
./configure \
--prefix=$prefix \
--i18n=${i18n:-0} \
--mandir=$mandir \
--strip=0;
# strip is disabled because pkg++ will do the job later.
make CC=$CTARGET-gcc;
make DESTDIR=$PKG install;
}
|