wok view linux64-kvm/receipt @ rev 15639

Down rack (1.3.5)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 09 20:33:37 2013 +0000 (2013-12-09)
parents 051931e905b0
children eb689de65d7e
line source
1 # SliTaz package receipt.
3 PACKAGE="linux64-kvm"
4 VERSION="3.2.40"
5 BASEVER="${VERSION:0:3}"
6 CATEGORY="base-system"
7 SHORT_DESC="The Linux kernel kvm and virtio modules."
8 MAINTAINER="devel@slitaz.org"
9 LICENSE="GPL2"
10 DEPENDS="linux64"
11 WANTED="linux"
12 PROVIDE="linux-kvm"
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=$install/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 arch/x86/kvm drivers/virtio \
25 drivers/char/hw_random/virtio-rng.ko.xz \
26 drivers/net/virtio_net.ko.xz drivers/block/virtio_blk.ko.xz | \
27 while read module; do
28 dir=$path/$(dirname $module)
29 [ -d $fs/$dir ] || mkdir -p $fs/$dir
30 cp -a $_pkg/$path/$module $fs/$dir
31 done
32 }
34 # Post install/remove commands for Tazpkg.
35 post_install()
36 {
37 chroot "$1/" depmod -a $BASEVER-slitaz
38 }
40 post_remove()
41 {
42 chroot "$1/" depmod -a $BASEVER-slitaz
43 }