# # Apps Packages for Chakra, part of chakra-project.org # # Maintainer: Adrián Chaves Fernández (Gallaecio) # Contributor: Neo Kolokotronis pkgname=aria2 pkgver=1.18.1 pkgrel=1 pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink.' arch=('x86_64') url='http://aria2.sourceforge.net/' license=('GPL3') depends=('ca-certificates' 'c-ares' 'gnutls' 'libxml2' 'sqlite3') categories=('network') source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2") md5sums=('dd23450364fd52e22813c3dc1f6e18da') build() { cd $srcdir/$pkgname-$pkgver ./configure \ --prefix=/usr \ --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt make } package() { cd $srcdir/$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 }