mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
f177906504
License-update: "Akamai Technolgies" changed to "Akamai Technologies" Changelog: =========== Transition to using submodules for vendored-in parser libraries Fixes for the implementation of YamlCppObject::find() Use the correct version of std::string::replace in the extractReferenceToken helper function Avoid throwing exceptions when using operator new in the CustomAllocator class Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
23 lines
834 B
BlitzBasic
23 lines
834 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"
|
|
SRCREV = "78ac8a737df56b5334354efe104ea8f99e2a2f00"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
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"
|