diff options
Diffstat (limited to 'xmame/xmame_0.86.oe')
-rw-r--r-- | xmame/xmame_0.86.oe | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/xmame/xmame_0.86.oe b/xmame/xmame_0.86.oe index e69de29bb2..1536fa39a5 100644 --- a/xmame/xmame_0.86.oe +++ b/xmame/xmame_0.86.oe @@ -0,0 +1,25 @@ +DESCRIPTION = "Multiple Arcade Machine Emulator based on SDL" +SECTION = "opie/games" +PRIORITY = "optional" +DEPENDS = "expat libsdl-qpe libsdl-mixer" + +SRC_URI = "http://x.mame.net/download/${P}.tar.bz2 \ + file://${FILESDIR}/crosscompile.patch;patch=1" + +inherit flow-lossage + +EXTRA_OEMAKE= + +do_compile() { + oe_runmake TARGET=mame JOY_SDL=1 SOUND_SDL=1 DISPLAY_METHOD=SDL \ + CC="${CC}" CXX="${CXX}" CFLAGS="-I. -Isrc -Isrc/include -Isrc/unix ${CFLAGS}" \ + CXXFLAGS="${CXXFLAGS}" LD="${CC}" LDFLAGS="${LDFLAGS}" \ + RANLIB="${RANLIB}" MY_CPU="${TARGET_ARCH}" ARCH="${TARGET_OS}" \ + GLLIBS="" STRIP="${STRIP}" AR="${AR}" +} + +do_install() { + install -d ${D}/${bindir} + install -m 0755 xmame.SDL ${D}/${bindir} +} + |