diff options
Diffstat (limited to 'snes9x')
-rw-r--r-- | snes9x/snes9x-sdl-qpe_1.39.oe | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/snes9x/snes9x-sdl-qpe_1.39.oe b/snes9x/snes9x-sdl-qpe_1.39.oe index 5b53f878a7..6b32e8b953 100644 --- a/snes9x/snes9x-sdl-qpe_1.39.oe +++ b/snes9x/snes9x-sdl-qpe_1.39.oe @@ -2,12 +2,13 @@ DESCRIPTION = "Super Nintendo Emulator based on SDL, QtE Palmtop Environments Ed SECTION = "base" PRIORITY = "optional" DEPENDS = "libsdl-qpe" +PR = "r1" SRC_URI = "http://www.vanille.de/mirror/snes9x-sdl-${PV}.tar.bz2 \ file://compile.patch;patch=1" S = "${WORKDIR}/snes9x-sdl-${PV}" -FILES_${PN} = "${TARGET_PALMTOPDIR}" +FILES_${PN} = "${palmtopdir}/bin/snes9x" do_compile() { oe_runmake CC="${CC}" CCC="${CXX}" \ @@ -16,7 +17,7 @@ do_compile() { } do_install() { - install -d ${D}/${TARGET_PALMTOPDIR}/${bindir} - install -m 0755 snes9x ${D}/${TARGET_PALMTOPDIR}/${bindir}/snes9x + install -d ${D}/${palmtopdir}/bin/ + install -m 0755 snes9x ${D}/${palmtopdir}/bin/snes9x } |