wok view iproute2/receipt @ rev 11319

Up: xlockmore to 5.35.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Nov 16 14:03:44 2011 +0000 (2011-11-16)
parents 5625dc1287ba
children 8ac189007bc2
line source
1 # SliTaz package receipt.
3 PACKAGE="iproute2"
4 VERSION="2.6.37"
5 CATEGORY="network"
6 SHORT_DESC="utilites for networking and traffic control"
7 MAINTAINER="allan316@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2"
10 WGET_URL="http://devresources.linux-foundation.org/dev/$PACKAGE/download/$TARBALL"
11 TAGS="network route"
13 DEPENDS="iptables db"
14 BUILD_DEPENDS="bison flex db-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 sed -i 's/<net\/if.h>/<net\/if.h>\n#include <linux\/ip.h>/' ip/link_gre.c
21 ./configure --prefix=/usr && \
22 make && \
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs
30 cp -a $_pkg/usr $fs/
31 cp -a $_pkg/etc $fs/
32 cp -a $_pkg/lib $fs/
33 cp -a $_pkg/sbin $fs/
34 }