diff options
Diffstat (limited to 'package/protobuf-c/Makefile')
| -rw-r--r-- | package/protobuf-c/Makefile | 33 | 
1 files changed, 33 insertions, 0 deletions
| diff --git a/package/protobuf-c/Makefile b/package/protobuf-c/Makefile new file mode 100644 index 000000000..f2a218e4f --- /dev/null +++ b/package/protobuf-c/Makefile @@ -0,0 +1,33 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(ADK_TOPDIR)/rules.mk + +PKG_NAME:=		protobuf-c +PKG_VERSION:=		1.5.0 +PKG_RELEASE:=		1 +PKG_HASH:=		d4cb022d55f49796959b07a9d83040822e39129bc0eb28f4e8301da17d758f62 +PKG_DESCR:=		protocol buffers implementation in c +PKG_SECTION:=		libs/misc +PKG_BUILDDEP:=		protobuf-c-host +PKG_SITES:=		https://github.com/protobuf-c/protobuf-c/archive/refs/tags/ +PKG_OPTS:=		dev + +DISTFILES:=             v$(PKG_VERSION).tar.gz + +include $(ADK_TOPDIR)/mk/host.mk +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call HOST_template,PROTOBUF_C,protobuf-c,$(PKG_VERSION)-$(PKG_RELEASE))) +$(eval $(call PKG_template,PROTOBUF_C,protobuf-c,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS))) + +AUTOTOOL_STYLE:=	autogen +CONFIGURE_ENV+=		PROTOC="$(STAGING_HOST_DIR)/usr/bin/protoc" + +protobuf-c-install: +	$(INSTALL_DIR) $(IDIR_PROTOBUF_C)/usr/lib +	$(CP) $(WRKINST)/usr/lib/libprotobuf-c*.so* \ +		$(IDIR_PROTOBUF_C)/usr/lib + +include $(ADK_TOPDIR)/mk/host-bottom.mk +include $(ADK_TOPDIR)/mk/pkg-bottom.mk | 
