diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-09-27 14:06:13 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-09-27 14:06:13 +0000 |
commit | 29dcb36ce413a2b535b171a8fcf113f05f9fe63d (patch) | |
tree | 2d09127a02bcc4c5c29f18dffac99d546476ad88 /snes9x/snes9x-sdl-qpe_1.39.oe | |
parent | 2e0ef965d1031c00acd91c3699d070a90ea6d345 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into home.hrw.one.pl:/home/hrw/zaurus/oe/packages
2004/09/27 16:05:58+02:00 hrw.one.pl!hrw
snes9x-sdl-qpe: fix packaging
BKrev: 41581e557MrTr0z0SkujE6guv7zObw
Diffstat (limited to 'snes9x/snes9x-sdl-qpe_1.39.oe')
-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 } |