wok view linux-video/receipt @ rev 20497

updated diffutils (3.3 -> 3.6)
author Hans-G?nter Theisgen
date Mon Oct 29 16:27:52 2018 +0100 (2018-10-29)
parents 708b5293dd29
children
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-video"
4 VERSION="3.16.55"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel video modules."
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 DEPENDS="linux"
10 WANTED="linux"
11 WEB_SITE="https://www.kernel.org/"
13 # Modules paths and list
14 MOD_PATH="lib/modules/$VERSION-slitaz/kernel"
15 MODULES="drivers/video/backlight"
17 # Rules to gen a SliTaz package suitable for Tazpkg.
18 genpkg_rules()
19 {
20 mkdir -p ${fs}/${MOD_PATH}
21 for module in $MODULES
22 do
23 dir=$MOD_PATH/$(dirname $module)
24 [ -d $fs/$dir ] || mkdir -p $fs/$dir
25 cp -a $install/$MOD_PATH/$module $fs/$dir
26 done
27 }
29 # Post install/remove commands for Tazpkg.
30 post_install()
31 {
32 chroot "$root/" depmod -a $VERSION-slitaz
33 }
35 post_remove()
36 {
37 chroot "$root/" depmod -a $VERSION-slitaz
38 }