mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
25386a23ab
../include/pbcopper/json/internal/json.hpp:1229:9: error: static_assert failed due to requirement 'sizeof(nlohmann::basic_json<std::map, std::vector, std::__1::basic_string<char>, bool, long, unsigned long, double, std::allocator, adl_serializer>) == 0' "could not find from_json() method in T's namespace" static_assert(sizeof(BasicJsonType) == 0, ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
34 lines
918 B
Makefile
34 lines
918 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= pbcopper
|
|
DISTVERSION= 0.4.1 # Test with biology/unanimity before upgrading!
|
|
PORTREVISION= 4
|
|
CATEGORIES= biology
|
|
|
|
# As of March 2018, unanimity is no longer open source.
|
|
# See https://github.com/PacificBiosciences/ccs.
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Core C++ library for Pacific Biosciences tools
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
BROKEN= fails to build
|
|
|
|
LIB_DEPENDS= libboost_regex.so:devel/boost-libs
|
|
|
|
# Meson needs BOOST_ROOT=${LOCALBASE}
|
|
# https://github.com/mesonbuild/meson/issues/2239
|
|
USES= compiler:c++14-lang localbase meson
|
|
USE_LDCONFIG= yes
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= PacificBiosciences
|
|
|
|
post-install:
|
|
${RLN} ${STAGEDIR}${PREFIX}/lib/libpbcopper.so.${PORTVERSION} \
|
|
${STAGEDIR}${PREFIX}/lib/libpbcopper.so.0.4
|
|
${RLN} ${STAGEDIR}${PREFIX}/lib/libpbcopper.so.${PORTVERSION} \
|
|
${STAGEDIR}${PREFIX}/lib/libpbcopper.so.0
|
|
|
|
.include <bsd.port.mk>
|