wok view linux-netfilter/receipt @ rev 2753

xcb-util: update BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 26 13:50:09 2009 +0200 (2009-04-26)
parents
children f306d126580e
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-netfilter"
4 VERSION="2.6.25.5"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel netfilter modules."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WANTED="linux"
9 WEB_SITE="http://www.kernel.org/"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 genpkg_rules()
14 {
15 local path
16 path=lib/modules/$VERSION-slitaz/kernel
17 mkdir -p $fs/$path
19 export src
20 export _pkg
22 $src/list_modules.sh net/netfilter net/ipv4/netfilter | \
23 while read module; do
24 dir=$path/$(dirname $module)
25 [ -d $fs/$dir ] || mkdir -p $fs/$dir
26 cp -a $_pkg/$path/$module $fs/$dir
27 done
28 }
30 # Post install/remove commands for Tazpkg.
31 post_install()
32 {
33 depmod -a -b "$1/" $VERSION-slitaz
34 }
36 post_remove()
37 {
38 depmod -a $VERSION-slitaz
39 }