From be48c75ddfeb9673f8fb40f07f7de587a13c8535 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Thu, 19 Apr 2018 22:28:21 +0000 Subject: pseudo-test2: add very simplified version of luna-init * luna-init sometimes triggers host-user-contamination issue add simplifed version of: https://github.com/webosose/meta-webosose/blob/master/meta-webos/recipes-webos/luna-init/luna-init.bb to try to reproduce it in for loop over night --- meta/recipes-devtools/pseudo/pseudo-test2.bb | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 meta/recipes-devtools/pseudo/pseudo-test2.bb (limited to 'meta') diff --git a/meta/recipes-devtools/pseudo/pseudo-test2.bb b/meta/recipes-devtools/pseudo/pseudo-test2.bb new file mode 100644 index 0000000000..bd2006d277 --- /dev/null +++ b/meta/recipes-devtools/pseudo/pseudo-test2.bb @@ -0,0 +1,30 @@ +# Copyright (c) 2012-2018 LG Electronics, Inc. + +SUMMARY = "Initialization, setup, and font files used by luna-sysmgr and luna-sysservice" +AUTHOR = "Alekseyev Oleksandr " +SECTION = "webos/base" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" + +#DEPENDS = "tzdata python-tz-native" + +SRCREV = "701ec4b373b776fba829c882b05ae19de9a476ed" + +inherit allarch +#inherit cmake +inherit pythonnative + +SRC_URI = "git://github.com/webosose/luna-init" +S = "${WORKDIR}/git" + +do_install() { +#do_install_append() { + # Expand fonts tarball + if [ -e ${S}/files/conf/fonts/fonts.tgz ]; then + install -d ${D}${datadir}/fonts + tar xvzf ${S}/files/conf/fonts/fonts.tgz --directory=${D}${datadir}/fonts + fi +} + +PACKAGES =+ "${PN}-fonts" +FILES_${PN}-fonts += "${datadir}/fonts/" -- cgit 1.2.3-korg