diff options
Diffstat (limited to 'community/aria2')
-rw-r--r-- | community/aria2/PKGBUILD | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/community/aria2/PKGBUILD b/community/aria2/PKGBUILD index e46dd187c..05aeda485 100644 --- a/community/aria2/PKGBUILD +++ b/community/aria2/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 74226 2012-07-23 03:08:17Z allan $ +# $Id: PKGBUILD 76063 2012-09-10 12:19:21Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: Thomas Dziedzic < gostrc at gmail > # Contributor: Angel Velasquez <angvp@archlinux.org> @@ -6,8 +6,8 @@ # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> pkgname=aria2 -pkgver=1.15.1 -pkgrel=2 +pkgver=1.15.2 +pkgrel=1 pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink' arch=('i686' 'x86_64') url='http://aria2.sourceforge.net/' @@ -15,10 +15,10 @@ license=('GPL') depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates') checkdepends=('cppunit') source=("http://downloads.sourceforge.net/aria2/aria2-${pkgver}.tar.bz2") -md5sums=('a749a1f7cfe03a7518630d2310267c42') +md5sums=('211f1e5c1fd28b788e687cb2d851812a') build() { - cd aria2-${pkgver} + cd $pkgname-$pkgver ./configure \ --prefix=/usr \ @@ -28,13 +28,12 @@ build() { } check() { - cd aria2-${pkgver} - + cd $pkgname-$pkgver make check } package() { - cd aria2-${pkgver} + cd $pkgname-$pkgver make DESTDIR=${pkgdir} install |