mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
21 lines
716 B
Bash
21 lines
716 B
Bash
# $Id: PKGBUILD 52897 2009-09-23 05:35:34Z eric $
|
|
# Maintainer: Alexander Fehr <pizzapunk gmail com>
|
|
|
|
pkgname=aria2
|
|
pkgver=1.5.2
|
|
pkgrel=1
|
|
pkgdesc="Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink"
|
|
arch=('i686' 'x86_64')
|
|
url="http://aria2.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('gnutls' 'libxml2' 'sqlite3' 'c-ares' 'ca-certificates')
|
|
source=( http://downloads.sourceforge.net/project/aria2/stable/archives/aria2-${pkgver}/aria2-${pkgver}.tar.bz2)
|
|
md5sums=('13ffefebdc4df4956721801fe74e01df')
|
|
|
|
build() {
|
|
cd "$srcdir/aria2-$pkgver"
|
|
|
|
./configure --prefix=/usr --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt || return 1
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|