mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
35 lines
1 KiB
Bash
35 lines
1 KiB
Bash
# Maintainer: Ronald van Haren <ronald.archlinux.org>
|
|
# Contributor: Judd Vinet <jvinet@zeroflux.org>
|
|
|
|
pkgname=iproute2
|
|
pkgver=2.6.28
|
|
pkgrel=1
|
|
pkgdesc="IP Routing Utilities"
|
|
arch=('arm')
|
|
license=('GPL2')
|
|
url="http://www.linux-foundation.org/en/Net:Iproute2"
|
|
depends=('linux-atm' 'perl')
|
|
provides=('iproute')
|
|
conflicts=('iproute')
|
|
replaces=('iproute')
|
|
|
|
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://devresources.linux-foundation.org/dev/iproute2/download/iproute2-${pkgver}.tar.bz2)
|
|
md5sums=('595f9b17320f69e8d30d2fa80f1bca14')
|
|
|
|
build() {
|
|
cd $srcdir/iproute2-${pkgver}
|
|
|
|
sed -i 's|/usr/local/lib/iptables|/usr/lib/iptables|' include/iptables.h || return 1
|
|
sed -i 's|=/share|=/usr/share|' Makefile || return 1
|
|
sed -i 's|=/sbin|=/usr/sbin|' Makefile || return 1
|
|
|
|
./configure || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
|
|
# chmod 755 $pkgdir/usr/sbin/ifcfg || return 1
|
|
|
|
}
|