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
27 lines
478 B
Makefile
27 lines
478 B
Makefile
# Created by: gnn
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= smhasher
|
|
PORTVERSION= 1.0
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 1
|
|
CATEGORIES= benchmarks
|
|
|
|
MAINTAINER= gnn@FreeBSD.org
|
|
COMMENT= Hash Algorithm Benchmarking
|
|
|
|
LICENSE= MIT
|
|
|
|
BROKEN_powerpc64= fails to compile: City.cpp: byteswap.h: No such file or directory
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= gvnn3
|
|
|
|
USES= cmake:insource
|
|
|
|
PLIST_FILES= bin/SMHasher
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/SMHasher ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|