wok view linux64-drm/receipt @ rev 14717

libgdiplus: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 11 11:20:13 2013 +0200 (2013-06-11)
parents 416fab3c90c0
children 051931e905b0
line source
1 # SliTaz package receipt.
3 PACKAGE="linux64-drm"
4 VERSION="3.2.40"
5 BASEVER="${VERSION:0:3}"
6 CATEGORY="base-system"
7 SHORT_DESC="The Linux kernel drm module."
8 MAINTAINER="devel@slitaz.org"
9 LICENSE="GPL2"
10 DEPENDS="linux64-agp"
11 WANTED="linux"
12 PROVIDE="linux-drm"
13 WEB_SITE="http://www.kernel.org/"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 local path
19 _pkg=$_pkg/linux64
20 path=lib/modules/$BASEVER-slitaz/kernel
21 mkdir -p $fs/$path
22 export src
23 export _pkg
24 $wanted_stuff/list_modules.sh drivers/gpu/drm | while read module; do
25 dir=$path/$(dirname $module)
26 [ -d $fs/$dir ] || mkdir -p $fs/$dir
27 cp -a $_pkg/$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
36 # remove drivers/char/agp kernel modules cause there in linux-agp package
37 if [ -d $fs/$path/drivers/char/agp ]; then
38 rm -rf $fs/$path/drivers/char/agp
39 fi
40 }
42 # Post install/remove commands for Tazpkg.
43 post_install()
44 {
45 chroot "$1/" depmod -a $BASEVER-slitaz
46 }
48 post_remove()
49 {
50 chroot "$1/" depmod -a $BASEVER-slitaz
51 }