wok view linux64-netfilter/receipt @ rev 13224

get-wifi-firmware: fix get-ipw2?00-firmware
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 12 15:55:25 2012 +0200 (2012-08-12)
parents
children 416fab3c90c0
line source
1 # SliTaz package receipt.
3 PACKAGE="linux64-netfilter"
4 VERSION="3.2.14"
5 BASEVER="${VERSION:0:3}"
6 CATEGORY="base-system"
7 SHORT_DESC="The Linux kernel netfilter modules."
8 MAINTAINER="devel@slitaz.org"
9 DEPENDS="linux64"
10 WANTED="linux"
11 PROVIDE="linux-netfilter"
12 WEB_SITE="http://www.kernel.org/"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 local path
18 _pkg=$_pkg/linux64
19 path=lib/modules/$BASEVER-slitaz/kernel
20 mkdir -p $fs/$path
22 export src
23 export _pkg
25 $wanted_stuff/list_modules.sh net/netfilter net/ipv4/netfilter net/8021q | \
26 while read module; do
27 dir=$path/$(dirname $module)
28 [ -d $fs/$dir ] || mkdir -p $fs/$dir
29 cp -a $_pkg/$path/$module $fs/$dir
30 done
31 rm -r $fs/$path/net/ipv6
33 for i in $(cat $wanted_stuff/modules.list); do
34 if [ -f $fs/$path/$i ]; then
35 rm -f $fs/$path/$i
36 fi
37 done
38 }
40 # Post install/remove commands for Tazpkg.
41 post_install()
42 {
43 chroot "$1/" depmod -a $BASEVER-slitaz
44 }
46 post_remove()
47 {
48 chroot "$1/" depmod -a $BASEVER-slitaz
49 }