core/iproute2/Pkgfile

21 lines
643 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
2012-03-20 11:35:37 +01:00
version=3.3.0
2010-08-05 17:09:58 +02:00
release=1
2012-01-11 14:48:38 +01:00
source=(http://www.kernel.org/pub/linux/utils/net/$name/$name-$version.tar.xz \
2012-03-20 11:35:37 +01:00
net.iproute2)
build() {
2011-12-05 16:55:53 +01:00
cd $name-$version
2011-11-16 11:33:31 +01:00
sed -i "/^CCOPTS/s|-O2|$CFLAGS|" Makefile
2011-01-08 17:25:00 +01:00
./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
}