wok view linux-radio/receipt @ rev 13739

Add xorg-xhost
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Dec 26 13:41:24 2012 +0100 (2012-12-26)
parents
children 416fab3c90c0
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-radio"
4 VERSION="3.2.14"
5 BASEVER="${VERSION:0:3}"
6 CATEGORY="base-system"
7 SHORT_DESC="The Linux kernel radio modules."
8 MAINTAINER="slaxemulator@gmail.com"
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/$BASEVER-slitaz/kernel
18 mkdir -p $fs/$path
20 export src
21 export _pkg
23 $wanted_stuff/list_modules.sh drivers/media/radio | while read module; do
24 dir=$path/$(dirname $module)
25 [ -d $fs/$dir ] || mkdir -p $fs/$dir
26 cp -a $_pkg/$path/$module $fs/$dir
27 done
29 for i in $(cat $wanted_stuff/modules.list); do
30 if [ -f $fs/$path/$i ]; then
31 rm -f $fs/$path/$i
32 fi
33 done
34 }
37 # Post install/remove commands for Tazpkg.
38 post_install()
39 {
40 chroot "$1/" depmod -a $BASEVER-slitaz
41 }
43 post_remove()
44 {
45 chroot "$1/" depmod -a $BASEVER-slitaz
46 }