wok view qemu/receipt @ rev 1240

Add; claws-mail dev file, claws-mail standart plugins.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Aug 11 23:42:36 2008 +0200 (2008-08-11)
parents b9b0f6b77b0b
children 65d3dfc87776
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 patch -p1 < ../stuff/virtio.u
19 #./configure --prefix=/usr --enable-alsa --disable-gfx-check \
21 ./configure --prefix=/usr --enable-alsa \
22 --host-cc=gcc-3 --cc=gcc-3 \
23 --target-list="i386-softmmu,x86_64-softmmu"
24 make
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cp -a $_pkg/usr $fs
32 }