wok view linux-wireless/receipt @ rev 2705

fix: consonance BUILD_DEPENDS
author Rohit Joshi <jozee@slitaz.org>
date Wed Apr 22 16:32:38 2009 +0000 (2009-04-22)
parents cb3aa8de28c0
children f306d126580e
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-wireless"
4 VERSION="2.6.25.5"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel wireless modules."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WANTED="linux"
9 WEB_SITE="http://www.kernel.org/"
10 DEPENDS="linux-crypto wireless_tools"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 local path
17 path=lib/modules/$VERSION-slitaz/kernel
18 mkdir -p $fs/$path
20 export src
21 export _pkg
23 $src/list_modules.sh drivers/net/wireless net/wireless net/ieee80211 | \
24 while read module; do
25 dir=$path/$(dirname $module)
26 [ -d $fs/$dir ] || mkdir -p $fs/$dir
27 cp -a $_pkg/$path/$module $fs/$dir
28 done
29 }
31 # Post install/remove commands for Tazpkg.
32 post_install()
33 {
34 depmod -a -b "$1/" $VERSION-slitaz
35 }
37 post_remove()
38 {
39 depmod -a $VERSION-slitaz
40 }