| b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2011 OpenWrt.org |
| 3 | # |
| 4 | # This is free software, licensed under the GNU General Public License v2. |
| 5 | # See /LICENSE for more information. |
| 6 | # |
| 7 | |
| 8 | include $(TOPDIR)/rules.mk |
| 9 | |
| 10 | PKG_NAME:=libprotobuf-c |
| 11 | PKG_VERSION:=1.4.1 |
| 12 | PKG_RELEASE:=1 |
| 13 | |
| 14 | PKG_SOURCE:=protobuf-c-$(PKG_VERSION).tar.gz |
| 15 | PKG_SOURCE_URL:=https://github.com/protobuf-c/protobuf-c/releases/download/v$(PKG_VERSION) |
| 16 | PKG_HASH:=4cc4facd508172f3e0a4d3a8736225d472418aee35b4ad053384b137b220339f |
| 17 | PKG_BUILD_DIR:=$(BUILD_DIR)/protobuf-c-$(PKG_VERSION) |
| 18 | HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/protobuf-c-$(PKG_VERSION) |
| 19 | |
| 20 | PKG_MAINTAINER:= |
| 21 | PKG_LICENSE:=BSD-2-Clause |
| 22 | PKG_LICENSE_FILES:=LICENSE |
| 23 | PKG_CPE_ID:=cpe:/a:protobuf-c_project:protobuf-c |
| 24 | |
| 25 | HOST_BUILD_DEPENDS:=protobuf/host |
| 26 | PKG_BUILD_DEPENDS:=protobuf |
| 27 | |
| 28 | CMAKE_INSTALL:=1 |
| 29 | CMAKE_SOURCE_SUBDIR:=build-cmake |
| 30 | |
| 31 | include $(INCLUDE_DIR)/package.mk |
| 32 | include $(INCLUDE_DIR)/host-build.mk |
| 33 | include $(INCLUDE_DIR)/cmake.mk |
| 34 | |
| 35 | define Package/libprotobuf-c |
| 36 | TITLE:=Protocol Buffers library |
| 37 | SECTION:=libs |
| 38 | CATEGORY:=Libraries |
| 39 | URL:=https://github.com/protobuf-c/protobuf-c |
| 40 | endef |
| 41 | |
| 42 | define Package/libprotobuf-c/description |
| 43 | Runtime library to use Google Protocol Buffers from C applications. |
| 44 | Protocol Buffers are a way of encoding structured data in an efficient yet |
| 45 | extensible format. Google uses Protocol Buffers for almost all of its |
| 46 | internal RPC protocols and file formats. |
| 47 | endef |
| 48 | |
| 49 | CMAKE_HOST_OPTIONS += \ |
| 50 | -DBUILD_SHARED_LIBS=OFF \ |
| 51 | -DCMAKE_CXX_STANDARD=11 \ |
| 52 | -DCMAKE_SKIP_RPATH=OFF \ |
| 53 | -DCMAKE_INSTALL_RPATH="${STAGING_DIR_HOSTPKG}/lib" |
| 54 | |
| 55 | CMAKE_OPTIONS += \ |
| 56 | -DBUILD_SHARED_LIBS=ON \ |
| 57 | -DBUILD_PROTOC=OFF |
| 58 | |
| 59 | define Package/libprotobuf-c/install |
| 60 | $(INSTALL_DIR) $(1)/usr/lib |
| 61 | $(CP) $(PKG_INSTALL_DIR)/usr/lib/libprotobuf-c.so* $(1)/usr/lib/ |
| 62 | endef |
| 63 | |
| 64 | $(eval $(call BuildPackage,libprotobuf-c)) |
| 65 | $(eval $(call HostBuild)) |
| 66 | |