wok view linux64-video/receipt @ rev 19126

Fill "customization" category in.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon May 09 21:59:10 2016 +0300 (2016-05-09)
parents 4ad2325946cd
children ffc20f9bd49f
line source
1 # SliTaz package receipt.
3 PACKAGE="linux64-video"
4 VERSION="3.2.71"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel video modules."
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 DEPENDS="linux64"
10 WANTED="linux"
11 PROVIDE="linux-video:linux64"
12 WEB_SITE="http://www.kernel.org/"
14 # Modules paths and list
15 MOD_PATH="lib/modules/$VERSION-slitaz64/kernel"
16 MODULES="drivers/video/backlight"
18 # Rules to gen a SliTaz package suitable for Tazpkg.
19 genpkg_rules()
20 {
21 src=$WOK/linux64/source/tmp
22 install=$install/linux64
23 mkdir -p ${fs}/${MOD_PATH}
24 for module in $MODULES
25 do
26 dir=$MOD_PATH/$(dirname $module)
27 [ -d $fs/$dir ] || mkdir -p $fs/$dir
28 cp -a $install/$MOD_PATH/$module $fs/$dir
29 done
30 }
32 # Post install/remove commands for Tazpkg.
33 post_install()
34 {
35 chroot "$root/" depmod -a $VERSION-slitaz64
36 }
38 post_remove()
39 {
40 chroot "$root/" depmod -a $VERSION-slitaz64
41 }