# $Id: PKGBUILD 86908 2013-03-24 10:25:05Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski # Contributor: Thomas Dziedzic < gostrc at gmail > # Contributor: Angel Velasquez # Contributor: Alexander Fehr # Contributor: Daniel J Griffiths pkgname=aria2 pkgver=1.16.5 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' 'sqlite' 'c-ares' 'ca-certificates') checkdepends=('cppunit') source=(http://downloads.sourceforge.net/aria2/aria2-${pkgver}.tar.xz) sha256sums=('00c5d9ef6ce584561e9ffc8626e03d1156073bf2ddcc10dc55750fb49626d1fe') build() { cd $pkgname-$pkgver ./configure \ --prefix=/usr \ --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt make } check() { cd $pkgname-$pkgver make check } package() { cd $pkgname-$pkgver make DESTDIR=${pkgdir} install # add bash completion (aria2 automatically installs to a temporary target directory) install -d ${pkgdir}/usr/share/bash-completion/completions install -m644 ${pkgdir}/usr/share/doc/aria2/bash_completion/aria2c \ ${pkgdir}/usr/share/bash-completion/completions rm -rf ${pkgdir}/usr/share/doc/aria2/bash_completion }