diff options
-rw-r--r-- | meta-oe/recipes-support/cmark/cmark_git.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/cmark/cmark_git.bb b/meta-oe/recipes-support/cmark/cmark_git.bb new file mode 100644 index 0000000000..f74a39b500 --- /dev/null +++ b/meta-oe/recipes-support/cmark/cmark_git.bb | |||
@@ -0,0 +1,17 @@ | |||
1 | SUMMARY = "CommonMark parsing and rendering library and program in C" | ||
2 | HOMEPAGE = "https://github.com/commonmark/cmark" | ||
3 | LICENSE = "BSD-2-Clause & MIT" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=81f9cae6293cc0345a9144b78152ab62" | ||
5 | |||
6 | SRC_URI = "git://github.com/commonmark/cmark.git" | ||
7 | SRCREV = "8daa6b1495124f0b67e6034130e12d7be83e38bd" | ||
8 | S = "${WORKDIR}/git" | ||
9 | |||
10 | PV = "0.29.0" | ||
11 | |||
12 | inherit cmake lib_package | ||
13 | |||
14 | EXTRA_OECMAKE += " \ | ||
15 | -DCMARK_TESTS=OFF \ | ||
16 | -DCMARK_STATIC=OFF \ | ||
17 | " | ||