diff options
author | Sebastian Suesens <sebastian.suesens@gmail.com> | 2022-10-17 06:17:29 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-10-17 19:19:40 -0700 |
commit | 0c1f379f424427d277b6c067dd0a05dff1868209 (patch) | |
tree | dee610dc38ef1122e097977fa5655bc47d061169 /meta-oe/recipes-support/md4c | |
parent | 4a0e41431e32b13fb6643e6771040495eb82d859 (diff) | |
download | meta-openembedded-0c1f379f424427d277b6c067dd0a05dff1868209.tar.gz |
md4c: added md4c lib
MD4C is Markdown parser implementation in C.
Signed-off-by: Sebastian Suesens <sebastian.suesens@baslerweb.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/md4c')
-rw-r--r-- | meta-oe/recipes-support/md4c/md4c_0.4.8.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/md4c/md4c_0.4.8.bb b/meta-oe/recipes-support/md4c/md4c_0.4.8.bb new file mode 100644 index 000000000..fc3dbb3ae --- /dev/null +++ b/meta-oe/recipes-support/md4c/md4c_0.4.8.bb | |||
@@ -0,0 +1,17 @@ | |||
1 | SUMMARY = "Markdown for C" | ||
2 | DESCRIPTION = "MD4C is Markdown parser implementation in C." | ||
3 | HOMEPAGE = "http://github.com/mity/md4c" | ||
4 | |||
5 | LICENSE = "MIT" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=7e0fbcf3701aad22f2d2e0624a703795" | ||
7 | |||
8 | |||
9 | S = "${WORKDIR}/git" | ||
10 | |||
11 | SRC_URI = " \ | ||
12 | git://github.com/mity/md4c.git;protocol=https;branch=master \ | ||
13 | " | ||
14 | |||
15 | SRCREV = "c3340b480e5232711858108be07460a9836c8ab5" | ||
16 | |||
17 | inherit cmake | ||