diff options
author | Richard Purdie <richard@openedhand.com> | 2007-11-13 20:00:21 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-11-13 20:00:21 +0000 |
commit | fda2bb511e8ddc93cfe84bba740f6af151d37b07 (patch) | |
tree | c4d35c8730acb9b406e1e1eed7e6b2d3c7a7197a /meta-extras/packages/qemu/qemu-android-native.bb | |
parent | 210caef864c14cf30c224f2ae09253bdf6932d7e (diff) | |
download | openembedded-core-fda2bb511e8ddc93cfe84bba740f6af151d37b07.tar.gz openembedded-core-fda2bb511e8ddc93cfe84bba740f6af151d37b07.tar.bz2 openembedded-core-fda2bb511e8ddc93cfe84bba740f6af151d37b07.zip |
Add android-goldfish metadata to meta-extras
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3143 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta-extras/packages/qemu/qemu-android-native.bb')
-rw-r--r-- | meta-extras/packages/qemu/qemu-android-native.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-extras/packages/qemu/qemu-android-native.bb b/meta-extras/packages/qemu/qemu-android-native.bb new file mode 100644 index 0000000000..169d790864 --- /dev/null +++ b/meta-extras/packages/qemu/qemu-android-native.bb @@ -0,0 +1,25 @@ +LICENSE = "GPL" +DEPENDS = "zlib-native" +PV = "0.0-rc20" +PR = "r0" + +SRC_URI = "http://android.googlecode.com/files/android-emulator-m3-rc20.tar.bz2 \ + file://fixes.patch;patch=1" + +S = "${WORKDIR}/android-emulator-20071111/qemu" + +EXTRA_OECONF = "--disable-gfx-check --target-list=arm-softmmu --enable-nand --enable-skins --enable-trace --enable-shaper --use-sdl-config=${prefix}/hackedsdl/bin/sdl-config --disable-user --disable-kqemu --enable-sdl --static-png --static-sdl" + +inherit autotools +inherit native + +do_unfubar () { + chmod -R u+w ${WORKDIR}/ + cd ${WORKDIR}/android-emulator-20071111/sdl + configure --prefix=${prefix}/hackedsdl + make + make install +} + +addtask unfubar after do_unpack before do_patch + |