core/iproute2/Pkgfile

22 lines
713 B
Plaintext
Raw Normal View History

2008-09-19 12:09:41 +02:00
# Description: A collection of utilites for controlling TCP/IP networking and traffic in Linux
2009-12-30 18:04:52 +01:00
# URL: http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2
2008-09-19 12:09:41 +02:00
# Maintainer: CRUX System Team, core-ports at crux dot nu
2011-01-08 17:25:00 +01:00
# Depends on: db iptables
name=iproute2
2011-07-12 09:42:49 +02:00
version=2.6.39
2010-08-05 17:09:58 +02:00
release=1
2011-07-12 09:42:49 +02:00
source=(http://devresources.linuxfoundation.org/dev/iproute2/download/$name-$version.tar.gz \
$name-$version.patch net.iproute2)
build() {
2008-09-19 12:09:41 +02:00
cd $name-$version
2011-07-12 09:42:49 +02:00
patch -p1 -i $SRC/$name-$version.patch
2011-01-08 17:25:00 +01:00
sed -i "s|-O2|$CFLAGS|" Makefile
./configure
2008-09-19 12:09:41 +02:00
make
2009-01-21 10:12:02 +01:00
make MANDIR=/usr/man DESTDIR=$PKG install
2010-05-27 12:03:32 +02:00
rm -r $PKG/share
2008-09-19 12:09:41 +02:00
install -D -m 0755 $SRC/net.iproute2 $PKG/etc/rc.d/net
}