wok view qemu/receipt @ rev 462

-10 Ko of uncompressible images (isomaster + leafpad)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Mar 20 00:39:20 2008 +0100 (2008-03-20)
parents 1a4e6879fa1f
children 1944d35c5a2c
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 libSDL-dev"
12 DEPENDS="alsa-lib libSDL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 #./configure --prefix=/usr --enable-alsa --disable-gfx-check \
20 ./configure --prefix=/usr --enable-alsa \
21 --host-cc=gcc-3 --cc=gcc-3 \
22 --target-list="i386-softmmu,x86_64-softmmu"
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $_pkg/usr $fs
31 }