wok view linux64-mmc/receipt @ rev 16766

lxde: export XDG_MENU_PREFIX (Thanks az_ua)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jun 18 18:52:14 2014 +0200 (2014-06-18)
parents 5ca86f3045d4
children 889f25f00105
line source
1 # SliTaz package receipt.
3 PACKAGE="linux64-mmc"
4 VERSION="3.2.53"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel mmc modules (card reader)."
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 DEPENDS="linux64"
10 WANTED="linux"
11 PROVIDE="linux-mmc"
12 WEB_SITE="http://www.kernel.org/"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 local path
18 install=$install/linux64
19 path=lib/modules/$VERSION-slitaz/kernel
20 mkdir -p $fs/$path
21 export src
22 export install
23 $wanted_stuff/list_modules.sh drivers/mmc drivers/misc/tifm_7xx1.ko.xz drivers/misc/iwmc3200top/iwmc3200top.ko.xz| \
24 while read module; do
25 dir=$path/$(dirname $module)
26 [ -d $fs/$dir ] || mkdir -p $fs/$dir
27 cp -a $install/$path/$module $fs/$dir
28 done
30 for i in $(cat $wanted_stuff/modules.list); do
31 if [ -f $fs/$path/$i ]; then
32 rm -f $fs/$path/$i
33 fi
34 done
35 }
37 # Post install/remove commands for Tazpkg.
38 post_install()
39 {
40 chroot "$root/" depmod -a $VERSION-slitaz
41 }
43 post_remove()
44 {
45 chroot "$root/" depmod -a $VERSION-slitaz
46 }