View | Details | Raw Unified | Return to bug 203532
Collapse All | Expand All

(-)textproc/cmark/Makefile (+18 lines)
Line 0 Link Here
1
# Created by: Tobias Kortkamp <t@tobik.me>
2
# $FreeBSD$
3
4
PORTNAME=	cmark
5
PORTVERSION=	0.22.0
6
CATEGORIES=	textproc
7
8
MAINTAINER=	t@tobik.me
9
COMMENT=	CommonMark parsing and rendering library and program in C
10
11
LICENSE=	BSD2CLAUSE
12
13
USE_GITHUB=	yes
14
GH_ACCOUNT=	jgm
15
16
USES=		cmake:outsource
17
18
.include <bsd.port.mk>
(-)textproc/cmark/distinfo (+2 lines)
Line 0 Link Here
1
SHA256 (jgm-cmark-0.22.0_GH0.tar.gz) = a45956e6ee491d71e9271ddeb09364599a136b8956d219f0168dd6042f6f791b
2
SIZE (jgm-cmark-0.22.0_GH0.tar.gz) = 213617
(-)textproc/cmark/files/patch-src_CMakeLists.txt (+11 lines)
Line 0 Link Here
1
--- src/CMakeLists.txt.orig	2015-10-04 10:17:08 UTC
2
+++ src/CMakeLists.txt
3
@@ -55,7 +55,7 @@ configure_file(${CMAKE_CURRENT_SOURCE_DI
4
 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libcmark.pc.in
5
   ${CMAKE_CURRENT_BINARY_DIR}/libcmark.pc @ONLY)
6
 install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libcmark.pc
7
-  DESTINATION lib/pkgconfig)
8
+  DESTINATION libdata/pkgconfig)
9
 
10
 include (GenerateExportHeader)
11
 
(-)textproc/cmark/pkg-descr (+11 lines)
Line 0 Link Here
1
cmark is the C reference implementation of CommonMark, a rationalized
2
version of Markdown syntax with a spec.
3
4
It provides a shared library (libcmark) with functions for parsing
5
CommonMark documents to an abstract syntax tree (AST), manipulating
6
the AST, and rendering the document to HTML, groff man, LaTeX,
7
CommonMark, or an XML representation of the AST.  It also provides a
8
command-line program (cmark) for parsing and rendering CommonMark
9
documents.
10
11
WWW: https://github.com/jgm/cmark
(-)textproc/cmark/pkg-plist (+9 lines)
Line 0 Link Here
1
bin/cmark
2
include/cmark.h
3
include/cmark_export.h
4
include/cmark_version.h
5
lib/libcmark.so
6
lib/libcmark.so.0.22.0
7
libdata/pkgconfig/libcmark.pc
8
share/man/man1/cmark.1
9
share/man/man3/cmark.3

Return to bug 203532