wok annotate linux-netfilter/receipt @ rev 2926
linux modules depends on depmod
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu May 07 09:37:08 2009 +0200 (2009-05-07) |
parents | d1f8fd6f6efe |
children | 9059daaaa23d |
rev | line source |
---|---|
pascal@2158 | 1 # SliTaz package receipt. |
pascal@2158 | 2 |
pascal@2158 | 3 PACKAGE="linux-netfilter" |
pascal@2158 | 4 VERSION="2.6.25.5" |
pascal@2158 | 5 CATEGORY="base-system" |
pascal@2158 | 6 SHORT_DESC="The Linux kernel netfilter modules." |
pascal@2158 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@2926 | 8 DEPENDS="linux" |
pascal@2158 | 9 WANTED="linux" |
pascal@2158 | 10 WEB_SITE="http://www.kernel.org/" |
pascal@2158 | 11 |
pascal@2158 | 12 |
pascal@2158 | 13 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2158 | 14 genpkg_rules() |
pascal@2158 | 15 { |
pascal@2158 | 16 local path |
pascal@2158 | 17 path=lib/modules/$VERSION-slitaz/kernel |
pascal@2158 | 18 mkdir -p $fs/$path |
pascal@2158 | 19 |
pascal@2158 | 20 export src |
pascal@2158 | 21 export _pkg |
pascal@2158 | 22 |
pascal@2158 | 23 $src/list_modules.sh net/netfilter net/ipv4/netfilter | \ |
pascal@2158 | 24 while read module; do |
pascal@2158 | 25 dir=$path/$(dirname $module) |
pascal@2158 | 26 [ -d $fs/$dir ] || mkdir -p $fs/$dir |
pascal@2158 | 27 cp -a $_pkg/$path/$module $fs/$dir |
pascal@2158 | 28 done |
pascal@2158 | 29 } |
pascal@2158 | 30 |
pascal@2158 | 31 # Post install/remove commands for Tazpkg. |
pascal@2158 | 32 post_install() |
pascal@2158 | 33 { |
pascal@2926 | 34 chroot "$1/" depmod -a $VERSION-slitaz |
pascal@2158 | 35 } |
pascal@2158 | 36 |
pascal@2158 | 37 post_remove() |
pascal@2158 | 38 { |
pascal@2158 | 39 depmod -a $VERSION-slitaz |
pascal@2158 | 40 } |
pascal@2158 | 41 |