summaryrefslogtreecommitdiff
path: root/community/aria2/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-05-23 22:47:30 +0000
committerroot <root@rshg047.dnsready.net>2011-05-23 22:47:30 +0000
commit87e20a64534e8f58ca4a4f84000b629e48569a98 (patch)
tree8c4b498a38d72459c7bc88bc02719b4849159d0f /community/aria2/PKGBUILD
parent3837a11a2a471b9db222d8eb6ed7d2fb9d1778c6 (diff)
Mon May 23 22:47:30 UTC 2011
Diffstat (limited to 'community/aria2/PKGBUILD')
-rw-r--r--community/aria2/PKGBUILD28
1 files changed, 16 insertions, 12 deletions
diff --git a/community/aria2/PKGBUILD b/community/aria2/PKGBUILD
index 65727809c..b3851c4b6 100644
--- a/community/aria2/PKGBUILD
+++ b/community/aria2/PKGBUILD
@@ -1,27 +1,31 @@
-# $Id: PKGBUILD 46952 2011-05-13 20:41:04Z andrea $
-# Maintainer: Angel Velasquez <angvp@archlinux.org>
+# Maintainer: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel Velasquez <angvp@archlinux.org>
# Contributor: Alexander Fehr <pizzapunk gmail com>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=aria2
-pkgver=1.11.1
+pkgver=1.11.2
pkgrel=1
-pkgdesc="Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink"
+pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
arch=('i686' 'x86_64')
-url="http://aria2.sourceforge.net/"
+url='http://aria2.sourceforge.net/'
license=('GPL')
depends=('gnutls' 'libxml2' 'sqlite3' 'c-ares' 'ca-certificates')
-source=(http://downloads.sourceforge.net/aria2/aria2-${pkgver}.tar.bz2)
-md5sums=('da785645a6d92450b0a54f384202ba6b')
-sha1sums=('b3b37cc7363305d55e86dcd74a73dc493ecfa530')
+source=("http://downloads.sourceforge.net/aria2/aria2-${pkgver}.tar.bz2")
+sha1sums=('db4761fa311e6d1f9526d1ee25461c2db84750ff')
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+ cd aria2-${pkgver}
+
+ ./configure \
+ --prefix=/usr \
+ --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+
make
}
package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
+ cd aria2-${pkgver}
+
+ make DESTDIR=${pkgdir} install
}