wok view linux-wireless/receipt @ rev 2033

get-flash-plugin: Fix crash issue - Add DEPENDS on curl
author Julien Rabier <taziden@slitaz.org>
date Sat Jan 10 01:23:09 2009 +0100 (2009-01-10)
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 }