wok view linux-radio/receipt @ rev 18296

Up linux (3.2.71)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 17 11:03:13 2015 +0200 (2015-08-17)
parents db5b03f42dd9
children ffc20f9bd49f
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-radio"
4 VERSION="3.2.71"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel radio modules."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WANTED="linux"
10 WEB_SITE="http://kernel.org/"
11 DEPENDS="linux"
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 install
22 $wanted_stuff/list_modules.sh drivers/media/radio | while read module; do
23 dir=$path/$(dirname $module)
24 [ -d $fs/$dir ] || mkdir -p $fs/$dir
25 cp -a $install/$path/$module $fs/$dir
26 done
28 for i in $(cat $wanted_stuff/modules.list); do
29 if [ -f $fs/$path/$i ]; then
30 rm -f $fs/$path/$i
31 fi
32 done
33 }
36 # Post install/remove commands for Tazpkg.
37 post_install()
38 {
39 chroot "$root/" depmod -a $VERSION-slitaz
40 }
42 post_remove()
43 {
44 chroot "$root/" depmod -a $VERSION-slitaz
45 }