wok view linux-video/receipt @ rev 14765

Add iaxmodem
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 21 16:25:19 2013 +0200 (2013-06-21)
parents 416fab3c90c0
children 051931e905b0
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-video"
4 VERSION="3.2.40"
5 BASEVER="${VERSION:0:3}"
6 CATEGORY="base-system"
7 SHORT_DESC="The Linux kernel video modules."
8 MAINTAINER="devel@slitaz.org"
9 LICENSE="GPL2"
10 DEPENDS="linux"
11 WANTED="linux"
12 WEB_SITE="http://www.kernel.org/"
14 # Modules paths and list
15 MOD_PATH="lib/modules/$BASEVER-slitaz/kernel"
16 MODULES="drivers/video/backlight"
18 # Rules to gen a SliTaz package suitable for Tazpkg.
19 genpkg_rules()
20 {
21 mkdir -p ${fs}/${MOD_PATH}
22 for module in $MODULES
23 do
24 dir=$MOD_PATH/$(dirname $module)
25 [ -d $fs/$dir ] || mkdir -p $fs/$dir
26 cp -a $_pkg/$MOD_PATH/$module $fs/$dir
27 done
28 }
30 # Post install/remove commands for Tazpkg.
31 post_install()
32 {
33 chroot "$1/" depmod -a $BASEVER-slitaz
34 }
36 post_remove()
37 {
38 chroot "$1/" depmod -a $BASEVER-slitaz
39 }