PKGBUILDs/community/axel/PKGBUILD
2009-10-09 21:15:33 -05:00

24 lines
577 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Evangelos Foutras <foutrelis@gmail.com>
# Contributor: Roman G <drakosha@au.ru>
pkgname=axel
pkgver=2.4
pkgrel=1
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
}
# vim:set ts=2 sw=2 et: