diff options
author | Britney Fransen <brfransen@gmail.com> | 2014-12-12 21:47:28 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2014-12-12 21:47:28 (GMT) |
commit | 17f2230a50e12321243e691fa5b8aa096a90970f (patch) | |
tree | 4bac9b108699521ec79f6c31196ca86e5ef42ce5 | |
parent | 574bd3bd42c540d3e502e8915c010f87f97e450e (diff) | |
download | linhes_pkgbuild-17f2230a50e12321243e691fa5b8aa096a90970f.zip linhes_pkgbuild-17f2230a50e12321243e691fa5b8aa096a90970f.tar.gz linhes_pkgbuild-17f2230a50e12321243e691fa5b8aa096a90970f.tar.bz2 |
iproute2: update to 3.17.0
-rw-r--r-- | abs/core/iproute2/PKGBUILD | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/abs/core/iproute2/PKGBUILD b/abs/core/iproute2/PKGBUILD index 04ca6df..e1f1683 100644 --- a/abs/core/iproute2/PKGBUILD +++ b/abs/core/iproute2/PKGBUILD @@ -1,16 +1,16 @@ -# $Id: PKGBUILD 199763 2013-11-15 21:24:40Z ronald $ +# $Id$ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor: Judd Vinet <jvinet@zeroflux.org> pkgname=iproute2 -pkgver=3.11.0 +pkgver=3.17.0 pkgrel=1 pkgdesc="IP Routing Utilities" arch=('i686' 'x86_64') license=('GPL2') url="http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2" -depends=('glibc' 'db' 'iptables') -makedepends=('linux-atm') +depends=('glibc' 'iptables') +makedepends=('linux-atm' 'git') optdepends=('linux-atm: ATM support') groups=('base') provides=('iproute') @@ -19,15 +19,16 @@ replaces=('iproute') options=('staticlibs' '!makeflags') backup=('etc/iproute2/ematch_map' 'etc/iproute2/rt_dsfield' 'etc/iproute2/rt_protos' \ 'etc/iproute2/rt_realms' 'etc/iproute2/rt_scopes' 'etc/iproute2/rt_tables') -source=(http://www.kernel.org/pub/linux/utils/net/$pkgname/$pkgname-$pkgver.tar.xz +#source=(http://www.kernel.org/pub/linux/utils/net/$pkgname/$pkgname-$pkgver.tar.xz +source=(git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git#tag=v$pkgver iproute2-fhs.patch - unwanted-link-help.patch) -sha1sums=('efb5ca0688e28967ec146ac37cc728c4f53c9d8f' + unwanted-link-help.patch) +sha1sums=('SKIP' '35b8cf2dc94b73eccad427235c07596146cd6f6c' '3b1335f4025f657f388fbf4e5a740871e3129c2a') prepare() { - cd $srcdir/$pkgname-$pkgver + cd "$srcdir/$pkgname" # set correct fhs structure patch -Np1 -i "$srcdir/iproute2-fhs.patch" @@ -40,14 +41,14 @@ prepare() { } build() { - cd $srcdir/$pkgname-$pkgver + cd "$srcdir/$pkgname" ./configure make } package() { - cd $srcdir/$pkgname-$pkgver + cd "$srcdir/$pkgname" make DESTDIR="$pkgdir" install |