wok view linux-media/receipt @ rev 14654

xorg-kbproto: Fixed depends but making it only xorg-utils-macros. It builds without xorg-xproto and xorg-libxkbfile-dev so its not needed.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Jun 05 02:41:07 2013 +0000 (2013-06-05)
parents 6f536abe4f0b
children ad59999b3fce
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-media"
4 VERSION="3.2.40"
5 BASEVER="${VERSION:0:3}"
6 CATEGORY="base-system"
7 SHORT_DESC="The Linux kernel media modules."
8 MAINTAINER="slaxemulator@gmail.com"
9 DEPENDS="linux"
10 WANTED="linux"
11 WEB_SITE="http://kernel.org"
13 # Modules paths and list
14 MOD_PATH="lib/modules/$BASEVER-slitaz/kernel"
15 MODULES="drivers/media drivers/mfd"
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
28 for i in $(cat $wanted_stuff/modules.list); do
29 if [ -f $fs/$path/$i ]; then
30 rm -f $fs/$path/$i
31 fi
32 done
33 }
35 # Post install/remove commands for Tazpkg.
36 post_install()
37 {
38 chroot "$1/" depmod -a $BASEVER-slitaz
39 }
41 post_remove()
42 {
43 chroot "$1/" depmod -a $BASEVER-slitaz
44 }