diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2021-02-24 07:39:06 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2021-02-24 07:39:06 +0000 |
commit | fb181fc51b0cbda9688d8eeafba9ca40fe7fc1d7 (patch) | |
tree | a844ef709a3e0f5fc15ae1d3a2db788f5b26d530 /science/libecpint/Makefile | |
parent | a26d4c8c0cc1c2a28c8c7cdd37ab957606c067ed (diff) | |
download | freebsd-ports-fb181fc51b0cbda9688d8eeafba9ca40fe7fc1d7.zip |
New port: science/libecpint: Library for the evaluation of integrals over effective core potentials
Diffstat (limited to 'science/libecpint/Makefile')
-rw-r--r-- | science/libecpint/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/science/libecpint/Makefile b/science/libecpint/Makefile new file mode 100644 index 000000000000..2023436d096a --- /dev/null +++ b/science/libecpint/Makefile @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= libecpint +DISTVERSIONPREFIX= v +DISTVERSION= 1.0.5 +CATEGORIES= science devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Library for the evaluation of integrals over effective core potentials + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libpugixml.so:textproc/pugixml + +USES= cmake compiler:c++11-lang +USE_LDCONFIG= yes + +USE_GITHUB= yes +GH_ACCOUNT= robashaw + +CMAKE_ON= BUILD_SHARED_LIBS +CMAKE_OFF= LIBECPINT_BUILD_TESTS LIBECPINT_BUILD_DOCS + +do-test: + @cd ${BUILD_WRKSRC} && \ + ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DLIBECPINT_BUILD_TESTS:BOOL=ON ${CMAKE_SOURCE_PATH} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ + ctest + +.include <bsd.port.mk> |