mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 10:26:28 -04:00
32 lines
955 B
Makefile
32 lines
955 B
Makefile
PORTNAME= xtl
|
|
DISTVERSION= 0.7.6
|
|
CATEGORIES= devel
|
|
PKGNAMESUFFIX= -quant-stack
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Template library that supports other quantstack projects
|
|
WWW= https://github.com/xtensor-stack/xtl
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= nlohmann-json>0:devel/nlohmann-json
|
|
RUN_DEPENDS= nlohmann-json>0:devel/nlohmann-json
|
|
TEST_DEPENDS= doctest>0:devel/doctest \
|
|
nlohmann-json>0:devel/nlohmann-json \
|
|
googletest>0:devel/googletest
|
|
|
|
USES= cmake
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= xtensor-stack
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
do-test: # tests fail to compile: https://github.com/xtensor-stack/xtl/issues/255
|
|
@cd ${WRKSRC} && \
|
|
${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -Dxtl_DIR:STRING=${STAGEDIR}${PREFIX}/lib/cmake/xtl -DBUILD_TESTS=ON -DDOWNLOAD_GTEST=OFF && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} xtest
|
|
|
|
.include <bsd.port.mk>
|