mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
33 lines
1.1 KiB
Makefile
33 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="protobuf"
|
|
PKG_VERSION="3.1.0"
|
|
PKG_SHA256="51ceea9957c875bdedeb1f64396b5b0f3864fe830eed6a2d9c066448373ea2d6"
|
|
PKG_LICENSE="OSS"
|
|
PKG_SITE="https://developers.google.com/protocol-buffers/"
|
|
PKG_URL="https://github.com/google/$PKG_NAME/releases/download/v$PKG_VERSION/$PKG_NAME-cpp-$PKG_VERSION.tar.gz"
|
|
PKG_DEPENDS_HOST="toolchain zlib:host"
|
|
PKG_DEPENDS_TARGET="toolchain zlib protobuf:host"
|
|
PKG_LONGDESC="Protocol Buffers for Google's data interchange format."
|
|
|
|
PKG_CMAKE_OPTS_HOST="-DCMAKE_NO_SYSTEM_FROM_IMPORTED=1 \
|
|
-DBUILD_SHARED_LIBS=0 \
|
|
-Dprotobuf_BUILD_TESTS=0 \
|
|
-Dprotobuf_BUILD_EXAMPLES=0 \
|
|
-Dprotobuf_WITH_ZLIB=1"
|
|
|
|
PKG_CMAKE_OPTS_TARGET="$PKG_CMAKE_OPTS_HOST"
|
|
|
|
configure_package() {
|
|
PKG_CMAKE_SCRIPT="$PKG_BUILD/cmake/CMakeLists.txt"
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
rm -rf $INSTALL/usr/bin
|
|
|
|
# HACK: we have protoc in $TOOLCHAIN/bin but it seems
|
|
# the one from sysroot prefix is picked when building hyperion. remove it!
|
|
rm -f $SYSROOT_PREFIX/usr/bin/protoc
|
|
}
|