wok view linux-kvm/receipt @ rev 11256

Add from wok-undigest: perl-crypt-ssleay perl-gtk2-perl perl-gtk2-trayicon perl-lwp-useragent
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 07 17:10:45 2011 +0100 (2011-11-07)
parents 5100c99f7848
children 6f536abe4f0b
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-kvm"
4 VERSION="2.6.37"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel kvm and virtio modules."
7 MAINTAINER="devel@slitaz.org"
8 DEPENDS="linux"
9 WANTED="linux"
10 WEB_SITE="http://www.kernel.org/"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 genpkg_rules()
14 {
15 local path
16 path=lib/modules/$VERSION-slitaz/kernel
17 mkdir -p $fs/$path
18 export src
19 export _pkg
20 $wanted_stuff/list_modules.sh arch/x86/kvm drivers/virtio drivers/lguest \
21 drivers/char/hw_random/virtio-rng.ko.gz \
22 drivers/net/virtio_net.ko.gz drivers/block/virtio_blk.ko.gz | \
23 while read module; do
24 dir=$path/$(dirname $module)
25 [ -d $fs/$dir ] || mkdir -p $fs/$dir
26 cp -a $_pkg/$path/$module $fs/$dir
27 done
28 }
30 # Post install/remove commands for Tazpkg.
31 post_install()
32 {
33 chroot "$1/" depmod -a $VERSION-slitaz
34 }
36 post_remove()
37 {
38 chroot "$1/" depmod -a $VERSION-slitaz
39 }