diff options
| -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" | ||
