wok view iproute2/receipt @ rev 11861

up weechat 0.3.7
author Samuel Trassare <samuel_trassare@yahoo.com>
date Mon Feb 27 11:00:09 2012 -0800 (2012-02-27)
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 }