wok annotate linux-wireless/receipt @ rev 521

Linux: split to linux, linux-acpi, linux-ieee1394, linux-sound.
Add: linux-reiserfs, linux-wireless
Fix modules post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Apr 09 08:49:36 2008 +0000 (2008-04-09)
parents
children 998d2b306f24
rev   line source
pascal@521 1 # SliTaz package receipt.
pascal@521 2
pascal@521 3 PACKAGE="linux-wireless"
pascal@521 4 VERSION="2.6.24.2"
pascal@521 5 CATEGORY="base-system"
pascal@521 6 SHORT_DESC="The Linux kernel wireless modules."
pascal@521 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@521 8 WANTED="linux"
pascal@521 9 WEB_SITE="http://www.kernel.org/"
pascal@521 10
pascal@521 11 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@521 12 genpkg_rules()
pascal@521 13 {
pascal@521 14 local path
pascal@521 15 path=lib/modules/$VERSION-slitaz/kernel
pascal@521 16 mkdir -p $fs/$path
pascal@521 17 while read module; do
pascal@521 18 dir=$path/$(dirname $module)
pascal@521 19 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@521 20 cp -a $_pkg/$path/$module $fs/$dir
pascal@521 21 done < stuff/modules-$VERSION.list
pascal@521 22 }
pascal@521 23
pascal@521 24 # Post install/remove commands for Tazpkg.
pascal@521 25 post_install()
pascal@521 26 {
pascal@521 27 depmod -a -b "$1/lib/modules/$VERSION-slitaz"
pascal@521 28 }
pascal@521 29
pascal@521 30 post_remove()
pascal@521 31 {
pascal@521 32 depmod -a
pascal@521 33 }
pascal@521 34