wok view qemu/receipt @ rev 3668

Upgrade: cpio (2.9 to 2.10)
author Matthew Sheets <rcx@zoominternet.net>
date Fri Jul 10 10:41:43 2009 +0000 (2009-07-10)
parents e2e27f5f41ad
children c4ca195c01dd
line source
1 # SliTaz package receipt.
3 PACKAGE="qemu"
4 VERSION="0.10.5"
5 CATEGORY="misc"
6 SHORT_DESC="General-purpose full virtualizer for x86 hardware."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.nongnu.org/qemu/"
10 WGET_URL="http://download.savannah.gnu.org/releases/qemu/$TARBALL"
11 BUILD_DEPENDS="alsa-lib-dev gettext libsdl-dev"
12 DEPENDS="alsa-lib gnutls libsdl zlib"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
19 # From 0.10.0 VirtIO paravirtual device are supported.
20 #[ -f done.virtio.u ] || patch -p1 < ../stuff/virtio.u
21 #touch done.virtio.u
23 #./configure --prefix=/usr --enable-alsa --disable-gfx-check
25 ./configure \
26 --prefix=/usr \
27 --target-list="i386-softmmu,x86_64-softmmu" &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cp -a $_pkg/usr $fs
36 }