blob: c9253d4975ffebff9bec8d6326a72d6c379b7814 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
PORTNAME= catch2 # 2.x series is under devel/catch, the project is called catch2
DISTVERSIONPREFIX= v
DISTVERSION= 3.11.0
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org
COMMENT= Test framework for C++ (3.x series)
WWW= https://github.com/catchorg/Catch2
LICENSE= BSL
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= cmake:testing compiler:c++14-lang python:build,test
USE_GITHUB= yes
GH_ACCOUNT= catchorg
GH_PROJECT= Catch2
CMAKE_ARGS= -DCMAKE_INSTALL_DOCDIR=${DOCSDIR} \
-DPython3_EXECUTABLE=${PYTHON_CMD}
CMAKE_ON= BUILD_SHARED_LIBS
CMAKE_OFF= CATCH_ENABLE_WERROR # otherwise tests fail to compile
CMAKE_TESTING_ON= CATCH_DEVELOPMENT_BUILD BUILD_TESTING CATCH_BUILD_TESTING
PORTDOCS= *
OPTIONS_DEFINE= DOCS
CONFLICTS= catch
# tests as of 3.11.0: 100% tests passed, 0 tests failed out of 74
.include <bsd.port.mk>
|