wok view linux-toshiba/receipt @ rev 17317

Add tix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 04 08:58:28 2014 +0100 (2014-11-04)
parents eb689de65d7e
children 08cf996a2307
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-toshiba"
4 VERSION="3.2.53"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel toshiba module."
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 DEPENDS="linux"
10 WANTED="linux"
11 WEB_SITE="http://www.kernel.org/"
13 # Modules paths and list
14 MOD_PATH="lib/modules/$VERSION-slitaz/kernel"
15 MODULES="drivers/char/toshiba.ko.xz"
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 }