forked from ports/contrib
21 lines
714 B
Plaintext
21 lines
714 B
Plaintext
# Description: An efficient cross platform serialization library for C++, with support for Java, C# and Go
|
|
# URL: https://google.github.io/flatbuffers/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: cmake python3-setuptools
|
|
|
|
name=flatbuffers
|
|
version=1.12.0
|
|
release=1
|
|
source=(https://github.com/google/flatbuffers/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
[[ -e /usr/bin/ninja ]] && PKGMK_FLATBUFFERS_OPTIONS=' -GNinja'
|
|
cmake -S$name-$version -Bbuild $PKGMK_FLATBUFFERS_OPTIONS \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DFLATBUFFERS_BUILD_FLATLIB=OFF \
|
|
-DFLATBUFFERS_BUILD_SHAREDLIB=ON
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|