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
22 lines
505 B
Makefile
22 lines
505 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= inastemp
|
|
DISTVERSION= 0.2.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://gitlab.mpcdf.mpg.de/bbramas/${PORTNAME}/repository/${DISTVERSION}/archive.tar.gz?ref=v${PORTVERSION}&dummy=/
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= C++ library to use SIMD vectorization
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= cmake
|
|
NO_ARCH= yes
|
|
CMAKE_ARGS= -DINASTEMP_DO_INSTALL:BOOL=ON \
|
|
-DINASTEMP_JUST_LIB:BOOL=ON
|
|
|
|
post-extract:
|
|
@${MV} ${WRKDIR}/${PORTNAME}-* ${WRKSRC}
|
|
|
|
.include <bsd.port.mk>
|