wok-stable annotate 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
rev   line source
pascal@438 1 # SliTaz package receipt.
pascal@438 2
pascal@438 3 PACKAGE="qemu"
pascal@438 4 VERSION="0.9.1"
pascal@438 5 CATEGORY="misc"
pascal@438 6 SHORT_DESC="General-purpose full virtualizer for x86 hardware."
pascal@438 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@438 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@438 9 WEB_SITE="http://bellard.org/$PACKAGE/"
pascal@438 10 WGET_URL="$WEB_SITE$TARBALL"
pascal@438 11 BUILD_DEPENDS="alsa-lib-dev gcc3 gettext"
pascal@438 12 DEPENDS="alsa-lib"
pascal@438 13
pascal@438 14 #http://fabrice.bellard.free.fr/qemu/kqemu-1.3.0pre11.tar.gz
pascal@438 15
pascal@438 16 # Rules to configure and make the package.
pascal@438 17 compile_rules()
pascal@438 18 {
pascal@438 19 cd $src
pascal@438 20 #./configure --prefix=/usr --enable-alsa --disable-gfx-check \
pascal@438 21
pascal@438 22 ./configure --prefix=/usr --enable-alsa \
pascal@438 23 --host-cc=gcc-3 --cc=gcc-3 \
pascal@438 24 --target-list="i386-softmmu,x86_64-softmmu"
pascal@438 25 make
pascal@438 26 make DESTDIR=$PWD/_pkg install
pascal@438 27 }
pascal@438 28
pascal@438 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@438 30 genpkg_rules()
pascal@438 31 {
pascal@438 32 cp -a $_pkg/usr $fs
pascal@438 33 }
pascal@438 34