forked from Lainports/freebsd-ports
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
23 lines
472 B
Makefile
23 lines
472 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= websocketpp
|
|
PORTVERSION= 0.8.1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= arved@FreeBSD.org
|
|
COMMENT= Header only implementation of the WebSocket protocol
|
|
|
|
LICENSE= MIT BSD3CLAUSE ZLIB
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= cmake:insource
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= zaphoyd
|
|
|
|
NO_ARCH= yes
|
|
|
|
post-stage: # https://github.com/zaphoyd/websocketpp/issues/781
|
|
@${RMDIR} ${STAGEDIR}${PREFIX}/include/websocketpp/CMakeFiles
|
|
|
|
.include <bsd.port.mk>
|