wok annotate iproute2/receipt @ rev 13262

Up: miro to 5.0.2.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Aug 17 15:03:15 2012 +0000 (2012-08-17)
parents f713f0a0d6cf
children f2ff76b6e8e2
rev   line source
allan316@4528 1 # SliTaz package receipt.
allan316@4528 2
allan316@4528 3 PACKAGE="iproute2"
pascal@13007 4 VERSION="3.2.0"
pankso@4804 5 CATEGORY="network"
allan316@4528 6 SHORT_DESC="utilites for networking and traffic control"
allan316@4528 7 MAINTAINER="allan316@gmail.com"
pascal@13007 8 TARBALL="$PACKAGE-$VERSION.tar.xz"
allan316@4528 9 WEB_SITE="http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2"
pascal@13010 10 WGET_URL="http://kernel.org/pub/linux/utils/net/$PACKAGE/$TARBALL"
jozee@4938 11 TAGS="network route"
allan316@4528 12
erjo@9934 13 DEPENDS="iptables db"
pascal@13011 14 BUILD_DEPENDS="bison flex iptables-dev db-dev libnl-dev"
erjo@9934 15
allan316@4528 16 # Rules to configure and make the package.
allan316@4528 17 compile_rules()
allan316@4528 18 {
allan316@4528 19 cd $src
allan316@4528 20 sed -i 's/<net\/if.h>/<net\/if.h>\n#include <linux\/ip.h>/' ip/link_gre.c
erjo@9934 21 ./configure --prefix=/usr && \
erjo@9934 22 make && \
erjo@9934 23 make DESTDIR=$DESTDIR install
allan316@4528 24 }
allan316@4528 25
allan316@4528 26 # Rules to gen a SliTaz package suitable for Tazpkg.
allan316@4528 27 genpkg_rules()
allan316@4528 28 {
allan316@4528 29 mkdir -p $fs
allan316@4528 30 cp -a $_pkg/usr $fs/
allan316@4528 31 cp -a $_pkg/etc $fs/
allan316@4528 32 cp -a $_pkg/lib $fs/
allan316@4528 33 cp -a $_pkg/sbin $fs/
allan316@4528 34 }
allan316@4528 35