* Add force endian set functionality * Fix vrefbuffer memory management problem * Fix msvc specific problem * Update boost from 1.61.0 to 1.68.0 * Fix msgpack_timestamp type mismatch bug
33 lines
605 B
Makefile
33 lines
605 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= msgpack
|
|
PORTVERSION= 3.1.1
|
|
DISTVERSIONPREFIX= cpp-
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= adamw@FreeBSD.org
|
|
COMMENT= Efficient binary serialization, like JSON but smaller and faster
|
|
|
|
LICENSE= BSL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt
|
|
|
|
TEST_DEPENDS= googletest>0:devel/googletest
|
|
|
|
USES= cmake pathfix
|
|
USE_LDCONFIG= yes
|
|
USE_GITHUB= yes
|
|
GH_PROJECT= msgpack-c
|
|
|
|
TEST_TARGET= test
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${ARCH} == "sparc64"
|
|
# required for __sync _* atomic operations on sparc
|
|
USE_GCC= yes
|
|
.endif
|
|
|
|
pre-test:
|
|
cd ${WRKSRC} && ${CMAKE_BIN} . && ${MAKE_CMD}
|
|
|
|
.include <bsd.port.mk>
|