diff options
author | Stephane Desneux <stephane.desneux@iot.bzh> | 2016-04-01 15:59:50 +0200 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.200> | 2016-04-04 22:08:33 +0000 |
commit | c2a3d0a1fac09ca9396c637ed9429889e4afe071 (patch) | |
tree | 500b869ebec9b423c199326f4f6f93e932aab780 /meta-ivi-common/recipes-test/blobsallad/blobsallad_2006-11-14-23-57.bb | |
parent | 8bd4c311799c5d6231de9210ac7dd768a9420eaf (diff) |
Add recipe for blobsallad package (JTA QA requirement)
Change-Id: I17e0b7ca6335cb90fecf4ff4f3e88607f8055e8b
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'meta-ivi-common/recipes-test/blobsallad/blobsallad_2006-11-14-23-57.bb')
-rw-r--r-- | meta-ivi-common/recipes-test/blobsallad/blobsallad_2006-11-14-23-57.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-ivi-common/recipes-test/blobsallad/blobsallad_2006-11-14-23-57.bb b/meta-ivi-common/recipes-test/blobsallad/blobsallad_2006-11-14-23-57.bb new file mode 100644 index 000000000..c3d744350 --- /dev/null +++ b/meta-ivi-common/recipes-test/blobsallad/blobsallad_2006-11-14-23-57.bb @@ -0,0 +1,34 @@ +DESCRIPTION = "" +HOMEPAGE = "http://blobsallad.se/" +LICENSE = "CLOSED" +LIC_FILES_CHKSUM = "" + +SRC_URI = " \ + http://blobsallad.se/src/blobsallad-src-${PV}.tar.gz \ + file://0001-Makefile.patch \ + file://0002-auto.patch \ + file://0003-printcleanup.patch \ + file://0004-bs_main.c.patch" + +SRC_URI[md5sum] = "a2e3342cbf0f3a4a9b110af2663bed36" +SRC_URI[sha256sum] = "cd6309df1929d3e6b7bce1dbecc751849aeaafe17c01e05fd2567dc4267faaa2" + +DEPENDS = "cairo virtual/libsdl" + +S = "${WORKDIR}/blobsallad-src" + +do_configure () { + # Specify any needed configure commands here + : +} + +do_compile () { + # You will almost certainly need to add additional arguments here + oe_runmake SDKROOT=${STAGING_DIR_HOST} +} + +do_install () { + install -d ${D}${bindir} + install -m 0755 blobsallad ${D}${bindir} +} + |