aboutsummaryrefslogtreecommitdiffstats
path: root/main/axel/APKBUILD
blob: 11b857f82bade98810d124b8c6b99c308dba7d46 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer:
pkgname=axel
pkgver=2.4
pkgrel=0
pkgdesc="multiple-connection concurrent downloader"
url="http://axel.alioth.debian.org/"
arch="all"
license="GPL"
depends=""
depends_dev=""
makedepends="$depends_dev"
install=""
subpackages="$pkgname-doc"
source="http://alioth.debian.org/frs/download.php/3015/axel-$pkgver.tar.gz"

_builddir="$srcdir"/axel-$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	./configure --prefix=/usr \
		--etcdir=/etc \
		--mandir=/usr/share/man \
		--i18n=0 \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
	rm -f "$pkgdir"/usr/lib/*.la
}

md5sums="a2a762fce0c96781965c8f9786a3d09d  axel-2.4.tar.gz"