diff options
author | Shlomi Vaknin <shlomi.39sd@gmail.com> | 2020-08-15 15:16:17 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-08-18 09:37:47 -0700 |
commit | e97dc9809957280e138197b5134af884f615e2ec (patch) | |
tree | efa6b00688871d060ca27f9dc51aa5cdc395ce21 | |
parent | e45ecc635f9bd41bc98aed742189dc8c94d3b65d (diff) | |
download | meta-openembedded-e97dc9809957280e138197b5134af884f615e2ec.tar.gz |
json-schema-validator: Add recipe
Signed-off-by: Shlomi Vaknin <shlomi.39sd@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-devtools/json-schema-validator/json-schema-validator_2.1.0.bb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/json-schema-validator/json-schema-validator_2.1.0.bb b/meta-oe/recipes-devtools/json-schema-validator/json-schema-validator_2.1.0.bb new file mode 100644 index 0000000000..7f6c34eb3d --- /dev/null +++ b/meta-oe/recipes-devtools/json-schema-validator/json-schema-validator_2.1.0.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | SUMMARY = "JSON schema validator for JSON for Modern C++" | ||
2 | LICENSE = "MIT" | ||
3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c441d022da1b1663c70181a32225d006" | ||
4 | |||
5 | SRC_URI = "git://github.com/pboettch/json-schema-validator" | ||
6 | SRCREV = "27fc1d094503623dfe39365ba82581507524545c" | ||
7 | |||
8 | S = "${WORKDIR}/git" | ||
9 | |||
10 | DEPENDS += "nlohmann-json" | ||
11 | |||
12 | inherit cmake | ||
13 | EXTRA_OECMAKE = "-DBUILD_SHARED_LIBS=ON -DBUILD_EXAMPLES=OFF -DBUILD_TESTS=OFF" | ||
14 | |||