blob: edb14a36a3874079d252719dff367920dabf3e6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
PORTNAME= abseil
PORTVERSION= 20200923.3
CATEGORIES= devel
MAINTAINER= danfe@FreeBSD.org
COMMENT= Abseil Common Libraries (C++)
LICENSE= APACHE20
USES= cmake compiler:c++11-lang
USE_GITHUB= yes
GH_PROJECT= ${PORTNAME}-cpp
CMAKE_ARGS= -DBUILD_SHARED_LIBS:BOOL=ON \
-DCMAKE_CXX_STANDARD=17 # force the same highest C++ standard because of ABI differences: see https://github.com/abseil/abseil-cpp/issues/819
.include <bsd.port.mk>
|