wok-stable view qemu/receipt @ rev 438

Add: qemu kqemu
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 15 09:43:51 2008 +0000 (2008-03-15)
parents
children b9b0f6b77b0b
line source
1 # SliTaz package receipt.
3 PACKAGE="qemu"
4 VERSION="0.9.1"
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://bellard.org/$PACKAGE/"
10 WGET_URL="$WEB_SITE$TARBALL"
11 BUILD_DEPENDS="alsa-lib-dev gcc3 gettext"
12 DEPENDS="alsa-lib"
14 #http://fabrice.bellard.free.fr/qemu/kqemu-1.3.0pre11.tar.gz
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 #./configure --prefix=/usr --enable-alsa --disable-gfx-check \
22 ./configure --prefix=/usr --enable-alsa \
23 --host-cc=gcc-3 --cc=gcc-3 \
24 --target-list="i386-softmmu,x86_64-softmmu"
25 make
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cp -a $_pkg/usr $fs
33 }