]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
pseudo-test2: add very simplified version of luna-init
authorMartin Jansa <Martin.Jansa@gmail.com>
Thu, 19 Apr 2018 22:28:21 +0000 (22:28 +0000)
committerMartin Jansa <Martin.Jansa@gmail.com>
Sun, 24 Mar 2019 10:13:28 +0000 (11:13 +0100)
* 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 [new file with mode: 0644]

diff --git a/meta/recipes-devtools/pseudo/pseudo-test2.bb b/meta/recipes-devtools/pseudo/pseudo-test2.bb
new file mode 100644 (file)
index 0000000..bd2006d
--- /dev/null
@@ -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 <alekseyev.oleksandr@lge.com>"
+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/"