wok view linux-libre-toshiba/receipt @ rev 11710

added tintin
author toronado
date Sun Feb 19 08:14:43 2012 -0800 (2012-02-19)
parents
children 03a6791abff6
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-libre-toshiba"
4 VERSION="2.6.37-libre"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux Libre kernel toshiba module."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 PROVIDE="linux-toshiba"
9 DEPENDS="linux-libre"
10 WANTED="linux-libre"
11 WEB_SITE="http://www.fsfla.org/svnwiki/selibre/linux-libre/"
13 # Modules paths and list
14 MOD_PATH="lib/modules/$VERSION-slitaz/kernel"
15 MODULES="drivers/char/toshiba.ko.gz"
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 $_pkg/$MOD_PATH/$module $fs/$dir
26 done
27 }
29 # Post install/remove commands for Tazpkg.
30 post_install()
31 {
32 chroot "$1/" depmod -a $VERSION-slitaz
33 }
35 post_remove()
36 {
37 chroot "$1/" depmod -a $VERSION-slitaz
38 }