wok annotate qemu/receipt @ rev 15268
libxml2, libxslt: remove wrong error trigger
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Sep 25 11:39:47 2013 +0000 (2013-09-25) |
parents | 9b6bb1d6033f |
children | 6c4006240de0 |
rev | line source |
---|---|
pascal@438 | 1 # SliTaz package receipt. |
pascal@438 | 2 |
pascal@438 | 3 PACKAGE="qemu" |
pankso@13346 | 4 VERSION="1.2.0" |
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@15002 | 8 LICENSE="GPL2" |
pankso@13346 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@12978 | 10 WEB_SITE="http://qemu.org" |
pankso@12978 | 11 WGET_URL="http://wiki.qemu.org/download/$TARBALL" |
pascal@14528 | 12 TAGS="virtualization emulator" |
pascal@438 | 13 |
pankso@10623 | 14 DEPENDS="alsa-lib gnutls libsdl bluez libtasn1 libsasl vde2 libcurl \ |
pankso@12978 | 15 attr util-linux-uuid libgio glib" |
pankso@10623 | 16 BUILD_DEPENDS="gettext perl alsa-lib-dev gnutls-dev libsdl-dev bluez-dev \ |
pankso@12978 | 17 libtasn1-dev vde2-dev curl-dev attr-dev util-linux-uuid-dev libgio-dev glib-dev" |
pankso@10623 | 18 |
pascal@438 | 19 # Rules to configure and make the package. |
pascal@438 | 20 compile_rules() |
pascal@438 | 21 { |
pascal@438 | 22 cd $src |
erjo@6068 | 23 |
pankso@10623 | 24 TARGET="i386-softmmu, x86_64-softmmu, \ |
pankso@10623 | 25 arm-softmmu, ppc-softmmu, mips-softmmu" |
pankso@12978 | 26 |
pankso@10623 | 27 #--cross-prefix= --host-cc= |
pankso@10623 | 28 ./configure \ |
pankso@3171 | 29 --prefix=/usr \ |
pankso@12978 | 30 --sysconfdir=/etc \ |
pankso@10623 | 31 --enable-sdl \ |
pankso@10623 | 32 --audio-drv-list=alsa,oss \ |
pankso@10623 | 33 --target-list="$TARGET" \ |
pankso@10623 | 34 --cc=$BUILD_SYSTEM-gcc && |
pankso@10623 | 35 make && make DESTDIR=$DESTDIR install |
pascal@438 | 36 } |
pascal@438 | 37 |
pascal@438 | 38 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@438 | 39 genpkg_rules() |
pascal@438 | 40 { |
erjo@6068 | 41 mkdir -p $fs/usr/bin $fs/usr/share |
pankso@10626 | 42 |
pankso@12978 | 43 # /etc/qemu is for x86_64 |
pankso@12978 | 44 #cp -a $install/etc $fs |
pankso@12978 | 45 |
pankso@12978 | 46 cp -a $install/usr/bin/qemu-*-i386 $fs/usr/bin |
pankso@12978 | 47 cp -a $install/usr/bin/qemu-ga $fs/usr/bin |
pankso@12978 | 48 cp -a $install/usr/bin/qemu-io $fs/usr/bin |
pankso@12978 | 49 cp -a $install/usr/bin/qemu-img $fs/usr/bin |
pankso@12978 | 50 cp -a $install/usr/bin/qemu-nbd $fs/usr/bin |
pankso@12978 | 51 |
pankso@12978 | 52 cp -a $install/usr/share/qemu $fs/usr/share |
pankso@12978 | 53 |
erjo@6068 | 54 # Remove unneeded bios binaries |
erjo@6068 | 55 rm -f $fs/usr/share/qemu/*ppc* |
erjo@6068 | 56 rm -f $fs/usr/share/qemu/*sparc* |
pankso@12978 | 57 |
pankso@12978 | 58 # Create qemu symlink |
pankso@12978 | 59 cd $fs/usr/bin && ln -s qemu-system-i386 $PACKAGE |
pascal@438 | 60 } |