diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2010-01-16 15:31:05 +0100 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2010-01-16 15:31:05 +0100 |
commit | f64741b096d94c2bbfcc57b8a095176a3fc9ef68 (patch) | |
tree | 78b986916a63cddc7a5210f1c87bce0ce1314106 /recipes/obsolete/xmame/xmame_0.95.bb | |
parent | 13e28c208e77f2543318e76e8e9780228b678a92 (diff) | |
parent | 96db6269a564ab2c04993b7ea3eff52d0971f01a (diff) |
Merge branch 'org.openembedded.dev' of git.openembedded.org:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/obsolete/xmame/xmame_0.95.bb')
-rw-r--r-- | recipes/obsolete/xmame/xmame_0.95.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes/obsolete/xmame/xmame_0.95.bb b/recipes/obsolete/xmame/xmame_0.95.bb new file mode 100644 index 0000000000..80924ef0c6 --- /dev/null +++ b/recipes/obsolete/xmame/xmame_0.95.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "Multiple Arcade Machine Emulator based on SDL" +LICENSE = "xmame" +SECTION = "games" +PRIORITY = "optional" +DEPENDS = "expat virtual/libsdl libsdl-mixer" + +SRC_URI = "http://x.mame.net/download/historic/${P}.tar.bz2" + +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} +} + |