[OE-core] Sample recipe for qt4e app?

Mike Looijmans mike.looijmans at topic.nl
Tue Jun 11 09:12:18 UTC 2013


On 06/11/2013 12:45 AM, Steve Sakoman wrote:
> The qt-apps folder in oe-core only seems to have recipes for qt4-x11-free apps.
>
> Does anyone have a recipe for a simple qt4e app that they would be
> willing to share?
>
> I'm looking to get an idea of just how small a qt4e image can be
> without climbing the learning curve of writing a qt app and recipe :-)

Here's my favorite:


DESCRIPTION = "QBall is a simple open source breakout style game"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = 
"file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"

inherit qt4e

SRCREV = "${AUTOREV}"
PV = "0.1+${SRCPV}"
PR = "r1"
S = "${WORKDIR}/git"

SRC_URI = "git://git.code.sf.net/p/q-ball/code"

FILES_${PN} += "/opt/QBall"
FILES_${PN}-dbg += "/opt/QBall/bin/.debug"

do_install() {
	export INSTALL_ROOT=${D}
	make install
}




More information about the Openembedded-core mailing list