diff --git a/libs/protobuf-c/Makefile b/libs/protobuf-c/Makefile index c94348ceaf..31595926aa 100644 --- a/libs/protobuf-c/Makefile +++ b/libs/protobuf-c/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libprotobuf-c PKG_VERSION:=1.3.2 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=protobuf-c-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/protobuf-c/protobuf-c/releases/download/v$(PKG_VERSION) diff --git a/libs/protobuf-c/patches/010-pkgconfig.patch b/libs/protobuf-c/patches/010-pkgconfig.patch new file mode 100644 index 0000000000..f0fd749bd9 --- /dev/null +++ b/libs/protobuf-c/patches/010-pkgconfig.patch @@ -0,0 +1,40 @@ +--- a/build-cmake/CMakeLists.txt ++++ b/build-cmake/CMakeLists.txt +@@ -1,7 +1,10 @@ + SET(PACKAGE protobuf-c) + SET(PACKAGE_NAME protobuf-c) + SET(PACKAGE_VERSION 1.3.2) ++set(PACKAGE_URL https://github.com/protobuf-c/protobuf-c) ++set(PACKAGE_DESCRIPTION "Protocol Buffers implementation in C") + ++include(GNUInstallDirs) + + CMAKE_MINIMUM_REQUIRED(VERSION 2.8 FATAL_ERROR) + +@@ -137,6 +140,9 @@ IF(CMAKE_HOST_UNIX) + INSTALL(CODE "EXECUTE_PROCESS (COMMAND ln -sf protoc-gen-c protoc-c WORKING_DIRECTORY ${CMAKE_INSTALL_PREFIX}/bin)") + ENDIF() + ++CONFIGURE_FILE ("libprotobufc.pc.in" "libprotobufc.pc" @ONLY) ++INSTALL (FILES "../libprotobufc.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig") ++ + INCLUDE(Dart) + + SET(DART_TESTING_TIMEOUT 5) +--- /dev/null ++++ b/build-cmake/libprotobufc.pc.in +@@ -0,0 +1,14 @@ ++prefix=@CMAKE_INSTALL_PREFIX@ ++exec_prefix=@CMAKE_INSTALL_PREFIX@ ++bindir=${exec_prefix}/@CMAKE_INSTALL_BINDIR@ ++libdir=${exec_prefix}/@CMAKE_INSTALL_LIBDIR@ ++includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ ++ ++Name: @PACKAGE_NAME@ ++Version: @PACKAGE_VERSION@ ++Description: @PACKAGE_DESCRIPTION@ ++URL: @PACKAGE_URL@ ++Requires: ++Libs: -L${libdir} -lprotobuf-c ++Libs.private: ++Cflags: -I${includedir}