wok-next annotate qemu/receipt @ rev 17269
Add linux64-exofs
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Oct 24 10:25:36 2014 +0200 (2014-10-24) |
parents | 15030aba419f |
children | 030756141e6d |
rev | line source |
---|---|
pascal@438 | 1 # SliTaz package receipt. |
pascal@438 | 2 |
pascal@438 | 3 PACKAGE="qemu" |
pascal@15358 | 4 VERSION="1.5.3" |
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 \ |
pascal@17266 | 15 attr util-linux-uuid libgio glib libusb" |
pankso@10623 | 16 BUILD_DEPENDS="gettext perl alsa-lib-dev gnutls-dev libsdl-dev bluez-dev \ |
pascal@15643 | 17 libtasn1-dev vde2-dev curl-dev attr-dev util-linux-uuid-dev libgio-dev \ |
pascal@15643 | 18 glib-dev autoconf automake libtool bison flex libusb-dev" |
pankso@10623 | 19 |
pascal@438 | 20 # Rules to configure and make the package. |
pascal@438 | 21 compile_rules() |
pascal@438 | 22 { |
pascal@17266 | 23 patch -p0 < $stuff/cloop.u |
erjo@6068 | 24 |
pankso@10623 | 25 TARGET="i386-softmmu, x86_64-softmmu, \ |
pankso@10623 | 26 arm-softmmu, ppc-softmmu, mips-softmmu" |
pankso@12978 | 27 |
pankso@10623 | 28 #--cross-prefix= --host-cc= |
pankso@10623 | 29 ./configure \ |
pankso@3171 | 30 --prefix=/usr \ |
pankso@12978 | 31 --sysconfdir=/etc \ |
pankso@10623 | 32 --enable-sdl \ |
pankso@10623 | 33 --audio-drv-list=alsa,oss \ |
pankso@10623 | 34 --target-list="$TARGET" \ |
pankso@10623 | 35 --cc=$BUILD_SYSTEM-gcc && |
pankso@10623 | 36 make && make DESTDIR=$DESTDIR install |
pascal@438 | 37 } |
pascal@438 | 38 |
pascal@438 | 39 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@438 | 40 genpkg_rules() |
pascal@438 | 41 { |
erjo@6068 | 42 mkdir -p $fs/usr/bin $fs/usr/share |
pankso@10626 | 43 |
pankso@12978 | 44 # /etc/qemu is for x86_64 |
pankso@12978 | 45 #cp -a $install/etc $fs |
pankso@12978 | 46 |
pankso@12978 | 47 cp -a $install/usr/bin/qemu-*-i386 $fs/usr/bin |
pankso@12978 | 48 cp -a $install/usr/bin/qemu-ga $fs/usr/bin |
pankso@12978 | 49 cp -a $install/usr/bin/qemu-io $fs/usr/bin |
pankso@12978 | 50 cp -a $install/usr/bin/qemu-img $fs/usr/bin |
pankso@12978 | 51 cp -a $install/usr/bin/qemu-nbd $fs/usr/bin |
pankso@12978 | 52 |
pankso@12978 | 53 cp -a $install/usr/share/qemu $fs/usr/share |
pankso@12978 | 54 |
erjo@6068 | 55 # Remove unneeded bios binaries |
erjo@6068 | 56 rm -f $fs/usr/share/qemu/*ppc* |
erjo@6068 | 57 rm -f $fs/usr/share/qemu/*sparc* |
pankso@12978 | 58 |
pankso@12978 | 59 # Create qemu symlink |
pankso@12978 | 60 cd $fs/usr/bin && ln -s qemu-system-i386 $PACKAGE |
pascal@438 | 61 } |