diff options
author | Thuận Nguyễn-Thái <nguyenthaithuanalg@gmail.com> | 2025-05-05 22:30:22 +0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-05-05 10:18:38 -0700 |
commit | 13891365f19b3750b8c69a977ee7920c6ece34f5 (patch) | |
tree | 4866c88527f764472f76d9563421d4fd7af80986 | |
parent | 8b2afbeee217342f8db3cd8141908694b0f689ff (diff) | |
download | meta-openembedded-13891365f19b3750b8c69a977ee7920c6ece34f5.tar.gz |
libserialmodule: Add recipe
- Async C/C++ Serial/COM + cross-OS
- Depend on: "simplelog-topic".
- The first version v1.0.3 is sent to OpenEmbedded.
Signed-off-by: Thuan Nguyen Thai <nguyenthaithuanalg@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/libserialmodule/libserialmodule_1.0.3.bb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libserialmodule/libserialmodule_1.0.3.bb b/meta-oe/recipes-support/libserialmodule/libserialmodule_1.0.3.bb new file mode 100644 index 0000000000..02125730d1 --- /dev/null +++ b/meta-oe/recipes-support/libserialmodule/libserialmodule_1.0.3.bb | |||
@@ -0,0 +1,13 @@ | |||
1 | SUMMARY = "A library for Serial/COM" | ||
2 | DESCRIPTION = "Async C/C++ I/O with COM/Serial Port Library." | ||
3 | HOMEPAGE = "https://github.com/thuanalg/libserialmodule" | ||
4 | |||
5 | LICENSE = "MIT" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=22cdd382a6275cb4c2e75c517952ac7c" | ||
7 | DEPENDS = "libsimplelog" | ||
8 | SRC_URI = "git://git@github.com/thuanalg/libserialmodule.git;branch=main;protocol=https;tag=v${PV}" | ||
9 | SRCREV = "9cf920aa1d3ef1d4a4de9a19e695717a6f097894" | ||
10 | S = "${WORKDIR}/git" | ||
11 | inherit cmake | ||
12 | EXTRA_OECMAKE = "-DUNIX_LINUX=1 -DMETA_OPENEMBEDDED=1" | ||
13 | |||