summaryrefslogtreecommitdiffstats
path: root/axel/Pkgfile
blob: ca36824d7b0b9928221ea6f3ffa4adb8134a442a (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 ${CHOST:+CC=$CHOST-gcc};
	make DESTDIR=$PKG install;
}