svn commit: r565494 - in head/textproc: . md4c

Gleb Popov arrowd at FreeBSD.org
Wed Feb 17 10:36:56 UTC 2021


Author: arrowd
Date: Wed Feb 17 10:36:55 2021
New Revision: 565494
URL: https://svnweb.freebsd.org/changeset/ports/565494

Log:
  textproc/md4c: Create the port.
  
  md4c is a markdown parser written in C.
  
  PR:		252383
  Submitted by:	Henrik Rosenke <rosenke at dssgmbh.de>
  Reviewed by:	Matthias Apitz <guru at unixarea.de>, daniel.engberg.lists at pyret.net

Added:
  head/textproc/md4c/
  head/textproc/md4c/Makefile   (contents, props changed)
  head/textproc/md4c/distinfo   (contents, props changed)
  head/textproc/md4c/pkg-descr   (contents, props changed)
  head/textproc/md4c/pkg-plist   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Wed Feb 17 10:09:31 2021	(r565493)
+++ head/textproc/Makefile	Wed Feb 17 10:36:55 2021	(r565494)
@@ -436,6 +436,7 @@
     SUBDIR += markdownfmt
     SUBDIR += markdownpart
     SUBDIR += mathml-xsd
+    SUBDIR += md4c
     SUBDIR += mdbook
     SUBDIR += mdocml
     SUBDIR += meld

Added: head/textproc/md4c/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/md4c/Makefile	Wed Feb 17 10:36:55 2021	(r565494)
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PORTNAME=	md4c
+DISTVERSION=	0.4.7
+CATEGORIES=	textproc
+
+MAINTAINER=	rosenke at dssgmbh.de
+COMMENT=	Markdown Parser written in C
+
+LICENSE=	MIT
+
+USES=		cmake
+USE_LDCONFIG=	yes
+USE_GITHUB=	yes
+GH_ACCOUNT=	mity
+GH_TAGNAME=	release-${DISTVERSION}
+
+.include <bsd.port.mk>

Added: head/textproc/md4c/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/md4c/distinfo	Wed Feb 17 10:36:55 2021	(r565494)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1613558190
+SHA256 (mity-md4c-0.4.7-release-0.4.7_GH0.tar.gz) = f1b12d7aeb64fcbc7092c832e1a8b137102fec168961c87222fa599aedc19035
+SIZE (mity-md4c-0.4.7-release-0.4.7_GH0.tar.gz) = 228223

Added: head/textproc/md4c/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/md4c/pkg-descr	Wed Feb 17 10:36:55 2021	(r565494)
@@ -0,0 +1,5 @@
+C Markdown parser. Fast.
+SAX-like interface. Compliant to CommonMark specification.
+Also allows converting from Markdown to HTML via md2html.
+
+WWW: https://github.com/mity/md4c

Added: head/textproc/md4c/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/md4c/pkg-plist	Wed Feb 17 10:36:55 2021	(r565494)
@@ -0,0 +1,16 @@
+bin/md2html
+include/md4c-html.h
+include/md4c.h
+lib/cmake/md4c-html/md4cHtmlConfig-%%CMAKE_BUILD_TYPE%%.cmake
+lib/cmake/md4c-html/md4cHtmlConfig.cmake
+lib/cmake/md4c/md4cConfig-%%CMAKE_BUILD_TYPE%%.cmake
+lib/cmake/md4c/md4cConfig.cmake
+lib/libmd4c-html.so
+lib/libmd4c-html.so.0
+lib/libmd4c-html.so.0.4.7
+lib/libmd4c.so
+lib/libmd4c.so.0
+lib/libmd4c.so.0.4.7
+libdata/pkgconfig/md4c-html.pc
+libdata/pkgconfig/md4c.pc
+man/man1/md2html.1.gz


More information about the svn-ports-all mailing list