mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-14 14:25:53 +01:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
22 lines
824 B
BlitzBasic
22 lines
824 B
BlitzBasic
SUMMARY = "Header-only C++ library for JSON Schema validation"
|
|
HOMEPAGE = "https://github.com/tristanpenman/valijson"
|
|
LICENSE = "BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=5c4583a434195e4f3b418e17c8ca2daf"
|
|
|
|
SRC_URI = "git://github.com/tristanpenman/valijson.git;branch=master;protocol=https;tag=v${PV}"
|
|
SRCREV = "4edda758546436462da479bb8c8514f8a95c35ad"
|
|
|
|
|
|
inherit cmake
|
|
|
|
PACKAGECONFIG ?= "boost"
|
|
|
|
PACKAGECONFIG[boost] = "-Dvalijson_EXCLUDE_BOOST=FALSE,-Dvalijson_EXCLUDE_BOOST=TRUE,boost"
|
|
PACKAGECONFIG[examples] = "-Dvalijson_BUILD_EXAMPLES=TRUE,-Dvalijson_BUILD_EXAMPLES=FALSE,curlpp"
|
|
PACKAGECONFIG[tests] = "-Dvalijson_BUILD_TESTS=TRUE,-Dvalijson_BUILD_TESTS=FALSE,curlpp"
|
|
|
|
# valijson is a header only C++ library, so the main package will be empty.
|
|
RDEPENDS:${PN}-dev = ""
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|