diff options
Diffstat (limited to 'community/axel/PKGBUILD')
-rw-r--r-- | community/axel/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/axel/PKGBUILD b/community/axel/PKGBUILD new file mode 100644 index 000000000..eddad131c --- /dev/null +++ b/community/axel/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 17354 2010-05-23 20:25:08Z foutrelis $ +# Maintainer: Evangelos Foutras <foutrelis@gmail.com> +# Contributor: Roman G <drakosha@au.ru> + +pkgname=axel +pkgver=2.4 +pkgrel=2 +pkgdesc="Download accelerator" +arch=('i686' 'x86_64') +url="http://axel.alioth.debian.org/" +license=('GPL') +depends=('glibc') +source=(http://alioth.debian.org/frs/download.php/3015/$pkgname-$pkgver.tar.gz) +md5sums=('a2a762fce0c96781965c8f9786a3d09d') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr + make || return 1 + make DESTDIR="$pkgdir" install || return 1 +} + +# vim:set ts=2 sw=2 et: |