summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics/lvgl/lvgl_8.3.8.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-graphics/lvgl/lvgl_8.3.8.bb')
-rw-r--r--meta-oe/recipes-graphics/lvgl/lvgl_8.3.8.bb42
1 files changed, 42 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/lvgl/lvgl_8.3.8.bb b/meta-oe/recipes-graphics/lvgl/lvgl_8.3.8.bb
new file mode 100644
index 0000000000..6103a02948
--- /dev/null
+++ b/meta-oe/recipes-graphics/lvgl/lvgl_8.3.8.bb
@@ -0,0 +1,42 @@
1# SPDX-FileCopyrightText: Huawei Inc.
2#
3# SPDX-License-Identifier: MIT
4
5HOMEPAGE = "https://lvgl.io/"
6DESCRIPTION = "LVGL is an OSS graphics library to create embedded GUI"
7SUMMARY = "Light and Versatile Graphics Library"
8LICENSE = "MIT"
9LIC_FILES_CHKSUM = "file://LICENCE.txt;md5=bf1198c89ae87f043108cea62460b03a"
10
11SRC_URI = "git://github.com/lvgl/lvgl;protocol=https;branch=release/v8.3"
12SRCREV = "e6d7be00bfa5e1df450c7b713003a9effa03c614"
13
14inherit cmake
15
16EXTRA_OECMAKE = "-DLIB_INSTALL_DIR=${baselib}"
17S = "${WORKDIR}/git"
18
19LVGL_CONFIG_LV_MEM_CUSTOM ?= "0"
20LVGL_CONFIG_LV_COLOR_DEPTH ?= "32"
21
22# Upstream does not support a default configuration
23# but propose a default "disabled" template, which is used as reference
24# More configuration can be done using external configuration variables
25do_configure:prepend() {
26 [ -r "${S}/lv_conf.h" ] \
27 || sed -e 's|#if 0 .*Set it to "1" to enable .*|#if 1 // Enabled|g' \
28 -e "s|\(#define LV_COLOR_DEPTH \).*|\1 ${LVGL_CONFIG_LV_COLOR_DEPTH}|g" \
29 \
30 -e "s|\(#define LV_MEM_CUSTOM .*\)0|\1${LVGL_CONFIG_LV_MEM_CUSTOM}|g" \
31 \
32 -e "s|\(#define LV_TICK_CUSTOM \).*|\1 1|g" \
33 -e "s|\(#define LV_TICK_CUSTOM_INCLUDE \).*|\1 <stdint.h>|g" \
34 -e "s|\(#define LV_TICK_CUSTOM_SYS_TIME_EXPR \).*|extern uint32_t custom_tick_get(void);\n\1 (custom_tick_get())|g" \
35 \
36 < "${S}/lv_conf_template.h" > "${S}/lv_conf.h"
37}
38
39FILES:${PN}-dev += "\
40 ${includedir}/${PN}/ \
41 ${includedir}/${PN}/lvgl/ \
42 "