ports/lang/solidity/Makefile
2025-12-18 10:46:41 +01:00

44 lines
1.0 KiB
Makefile

PORTNAME= solidity
DISTVERSION= 0.8.32
CATEGORIES= lang
MASTER_SITES= https://github.com/argotorg/solidity/releases/download/v${DISTVERSION}/
DISTNAME= ${PORTNAME}_${DISTVERSION}
MAINTAINER= ale@FreeBSD.org
COMMENT= Solidity Contract-Oriented Programming Language
WWW= https://github.com/argotorg/solidity
LICENSE= GPLv3
NOT_FOR_ARCHS= powerpc powerpc64 powerpcspe
NOT_FOR_ARCHS_REASON= solidity currently does not support big endian systems
BUILD_DEPENDS= boost-libs>=0:devel/boost-libs \
libfmt>=0:devel/libfmt \
nlohmann-json>=0:devel/nlohmann-json \
range-v3>=0:devel/range-v3
USES= cmake compiler:c++14-lang cpe
CPE_VENDOR= ${PORTNAME}lang
OPTIONS_DEFINE= Z3 CVC5
OPTIONS_DEFAULT=Z3
Z3_DESC= SMT Checker via Z3
CVC5_DESC= SMT Checker via CVC5
Z3_RUN_DEPENDS= z3:math/z3
CVC5_RUN_DEPENDS= cvc5:math/cvc5
CMAKE_ARGS+= -DTESTS=OFF \
-DIGNORE_VENDORED_DEPENDENCIES=ON
PLIST_FILES= bin/solc \
bin/yul-phaser
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD
CXXFLAGS+= -Wno-unqualified-std-cast-call
.endif
.include <bsd.port.mk>