From 5df97187b1cd92948c2c0f2a6cd36967041cae86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Mon, 26 Aug 2019 22:14:40 +0200 Subject: [PATCH] cmark: initial add 0.29.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It is on the way to meta-openembedded but I need it now on warrior for QML apps. So keep cmark here temporaray. Signed-off-by: Andreas Müller --- recipes-support/cmark/cmark_git.bb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 recipes-support/cmark/cmark_git.bb diff --git a/recipes-support/cmark/cmark_git.bb b/recipes-support/cmark/cmark_git.bb new file mode 100644 index 00000000..f74a39b5 --- /dev/null +++ b/recipes-support/cmark/cmark_git.bb @@ -0,0 +1,17 @@ +SUMMARY = "CommonMark parsing and rendering library and program in C" +HOMEPAGE = "https://github.com/commonmark/cmark" +LICENSE = "BSD-2-Clause & MIT" +LIC_FILES_CHKSUM = "file://COPYING;md5=81f9cae6293cc0345a9144b78152ab62" + +SRC_URI = "git://github.com/commonmark/cmark.git" +SRCREV = "8daa6b1495124f0b67e6034130e12d7be83e38bd" +S = "${WORKDIR}/git" + +PV = "0.29.0" + +inherit cmake lib_package + +EXTRA_OECMAKE += " \ + -DCMARK_TESTS=OFF \ + -DCMARK_STATIC=OFF \ +"