summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-support/cmark/cmark_git.bb17
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 @@
1SUMMARY = "CommonMark parsing and rendering library and program in C"
2HOMEPAGE = "https://github.com/commonmark/cmark"
3LICENSE = "BSD-2-Clause & MIT"
4LIC_FILES_CHKSUM = "file://COPYING;md5=81f9cae6293cc0345a9144b78152ab62"
5
6SRC_URI = "git://github.com/commonmark/cmark.git"
7SRCREV = "8daa6b1495124f0b67e6034130e12d7be83e38bd"
8S = "${WORKDIR}/git"
9
10PV = "0.29.0"
11
12inherit cmake lib_package
13
14EXTRA_OECMAKE += " \
15 -DCMARK_TESTS=OFF \
16 -DCMARK_STATIC=OFF \
17"