707c6bf295
Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine
25 lines
521 B
Makefile
25 lines
521 B
Makefile
# Created by: Tobias Kortkamp <t@tobik.me>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cmark
|
|
PORTVERSION= 0.28.3
|
|
CATEGORIES= textproc
|
|
|
|
MAINTAINER= tobik@FreeBSD.org
|
|
COMMENT= CommonMark parsing and rendering library and program in C
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
CONFLICTS_INSTALL= py[2-3][0-9]-CommonMark
|
|
|
|
USES= cmake python:3.4+,test
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= commonmark
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_ARGS= -DCMAKE_INSTALL_LIBDIR:STRING="lib"
|
|
PLIST_SUB= VERSION=${PORTVERSION}
|
|
TEST_TARGET= test
|
|
|
|
.include <bsd.port.mk>
|