wok view linux-mwave/receipt @ rev 14587

Add missing deps coreutils-disk and coreutils-redirection for use tee and df command instead of Busybox
author Stanislas Leduc <shann@slitaz.org>
date Sun May 26 19:06:03 2013 +0200 (2013-05-26)
parents 6f536abe4f0b
children ad59999b3fce
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-mwave"
4 VERSION="3.2.40"
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 }