wok view linux-mwave/receipt @ rev 12709

branch merge
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 04 16:52:18 2012 +0300 (2012-05-04)
parents d1768332cee0
children 416fab3c90c0
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-mwave"
4 VERSION="3.2.14"
5 BASEVER="${VERSION:0:3}"
6 CATEGORY="base-system"
7 SHORT_DESC="The Linux kernel ACP Modem driver module (for IBM Thinkpad)"
8 MAINTAINER="devel@slitaz.org"
9 DEPENDS="linux"
10 WANTED="linux"
11 WEB_SITE="http://www.kernel.org/"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 local path
17 path=lib/modules/$BASEVER-slitaz/kernel
18 mkdir -p $fs/$path
19 export src
20 export _pkg
21 $wanted_stuff/list_modules.sh drivers/char/mwave | while read module; do
22 dir=$path/$(dirname $module)
23 [ -d $fs/$dir ] || mkdir -p $fs/$dir
24 cp -a $_pkg/$path/$module $fs/$dir
25 done
26 }
28 # Post install/remove commands for Tazpkg.
29 post_install()
30 {
31 chroot "$1/" depmod -a $BASEVER-slitaz
32 }
34 post_remove()
35 {
36 chroot "$1/" depmod -a $BASEVER-slitaz
37 }