diff options
author | Matthias Hentges <oe@hentges.net> | 2004-10-12 14:04:40 +0000 |
---|---|---|
committer | Matthias Hentges <oe@hentges.net> | 2004-10-12 14:04:40 +0000 |
commit | ad67cc461bf2d612f427df24a9b0078fd23293ca (patch) | |
tree | 212572ac516b7dfc8e8b08c9c16e72a4492851b3 /xmame | |
parent | d1c3b5ac5b67787dd8591d75c37b450367900831 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into handhelds.org:/home/mhentges/OpenEmbedded/packages
2004/10/12 16:03:13+02:00 handhelds.org!CoreDump
More section fixes
BKrev: 416be478U3wZ_yiCDqd0QreoBYPNrg
Diffstat (limited to 'xmame')
-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} +} + |