diff options
| author | Frede Hoey Braendstrup <frederikbraendstrup@gmail.com> | 2026-01-26 13:21:21 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2026-01-30 23:59:04 -0800 |
| commit | e854d8b7f699ea01184ff29f3ca4adccb79eace0 (patch) | |
| tree | 7afaea6813987eb761be4e1dc21cc665968bd456 | |
| parent | 48dd13d3748a8a931a863d63e1b93f49e6d0ceed (diff) | |
| download | meta-openembedded-e854d8b7f699ea01184ff29f3ca4adccb79eace0.tar.gz | |
glaze: add recipe at 7.0.1
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-support/glaze/glaze_7.0.1.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/glaze/glaze_7.0.1.bb b/meta-oe/recipes-support/glaze/glaze_7.0.1.bb new file mode 100644 index 0000000000..e481290b9c --- /dev/null +++ b/meta-oe/recipes-support/glaze/glaze_7.0.1.bb | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | SUMMARY = "Extremely fast, in memory, JSON and reflection library for modern C++. BEVE, CBOR, CSV, MessagePack, TOML, EETF " | ||
| 2 | HOMEPAGE = "https://stephenberry.github.io/glaze/" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=ea4d29875d83fbbf50485c846dbbbed8" | ||
| 5 | |||
| 6 | SRC_URI = "git://github.com/stephenberry/glaze;protocol=https;branch=main;tag=v${PV}" | ||
| 7 | |||
| 8 | SRCREV = "a4af950700b8af2659f0d4a37a18a1b9c5300593" | ||
| 9 | |||
| 10 | inherit cmake | ||
| 11 | |||
| 12 | EXTRA_OECMAKE = "-Dglaze_BUILD_EXAMPLES=OFF -DBUILD_TESTING=OFF -Dglaze_ENABLE_FUZZING=OFF -Dglaze_DEVELOPER_MODE=OFF" | ||
| 13 | |||
| 14 | do_install:append() { | ||
| 15 | install -d ${D}${datadir}/cmake/${BPN} | ||
| 16 | mv -f ${D}${datadir}/${BPN}/*.cmake ${D}${datadir}/cmake/${BPN} | ||
| 17 | rmdir -p --ignore-fail-on-non-empty ${D}${datadir}/${BPN} | ||
| 18 | } | ||
| 19 | |||
| 20 | # Glaze is a header-only C++ library, so the main package will be empty. | ||
| 21 | ALLOW_EMPTY:${PN} = "1" | ||
| 22 | |||
| 23 | BBCLASSEXTEND = "native" | ||
