diff options
Diffstat (limited to 'recipes/scummvm/scummvm_1.1.1.bb')
-rw-r--r-- | recipes/scummvm/scummvm_1.1.1.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/recipes/scummvm/scummvm_1.1.1.bb b/recipes/scummvm/scummvm_1.1.1.bb new file mode 100644 index 0000000000..4ee3031e68 --- /dev/null +++ b/recipes/scummvm/scummvm_1.1.1.bb @@ -0,0 +1,41 @@ +require scummvm.inc + +DEPENDS = "virtual/libsdl libvorbis libogg zlib \ + ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'libmad mpeg2dec', d)}" + +SRC_URI += " file://scummvm.desktop \ + file://no-strip.patch;patch=1 \ + " +PR = "${INC_PR}.0" + +SRC_URI_append_openmoko = " file://openmoko-scummvm " +SRC_URI_append_shr = " file://openmoko-scummvm " + +SRC_URI_OVERRIDES_PACKAGE_ARCH = "1" + +# Make this a plugin enabled build. Bigger binary, less memory usage. Makes more games run on lower end platforms. +# These plugins are not normal Linux shared libs so will fall foul of the sanity checker. +INSANE_SKIP_${PN} = True +EXTRA_OECONF += " --enable-plugins --default-dynamic " + +# Workaround, because some env variables aren't recognised correctly +do_configure_append() { + sed -i "s/AS := as/AS := ${AS}/" ${S}/config.mk + sed -i "s/AR := ar cru/AR := ${AR} cru/" ${S}/config.mk + sed -i "s/STRIP := strip/STRIP := ${STRIP}/" ${S}/config.mk + sed -i "s/RANLIB := ranlib/RANLIB := ${RANLIB}/" ${S}/config.mk +} + +do_install_append() { + if [ -f ${WORKDIR}/openmoko-scummvm ]; then + install -d ${D}${bindir} + install -m 0755 ${WORKDIR}/openmoko-scummvm ${D}${bindir}/openmoko-scummvm + fi + if [ -f ${WORKDIR}/scummvm.desktop ]; then + install -d ${D}${datadir}/applications + install -m 0644 ${WORKDIR}/scummvm.desktop ${D}${datadir}/applications + fi +} + +SRC_URI[md5sum] = "ed9098a78022d07fa1482f14325e3ab8" +SRC_URI[sha256sum] = "9cc865c5690bfc1df4970d35984455031467381180a71d84b08dcc9f51e39d4a" |