25b7de7213
- Force rebuild all consumers to catch regressions early Changes: https://blog.rust-lang.org/2020/03/12/Rust-1.42.html Tested by: mikael, tobik With hat: rust Differential Revision: https://reviews.freebsd.org/D24020
37 lines
664 B
Makefile
37 lines
664 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= parity-ethereum
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 2.7.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= net-p2p
|
|
|
|
MAINTAINER= ale@FreeBSD.org
|
|
COMMENT= Fast and advanced Ethereum client
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BROKEN_i386= fails to build
|
|
BROKEN_FreeBSD_11= fails to build
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/llvm-config90:devel/llvm90
|
|
|
|
USES= cargo
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= paritytech
|
|
|
|
PLIST_FILES= bin/parity
|
|
|
|
CARGO_FEATURES= final
|
|
CARGO_TEST= yes
|
|
|
|
MAKE_ENV+= LLVM_CONFIG_PATH="${LOCALBASE}/bin/llvm-config90"
|
|
|
|
.include "${.CURDIR}/Makefile.crates"
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/parity
|
|
|
|
.include <bsd.port.mk>
|