summaryrefslogtreecommitdiff
path: root/package/protobuf
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-10-25 21:00:25 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-10-25 21:01:32 +0200
commitcebe4668fe90fdc6a79ceff35cbbca50751704a5 (patch)
tree73cc7193f2ef8a6266686a08f09af4f1c6dd0778 /package/protobuf
parent714a6eb1eb55f00abe4ae3d84f851fae699df57d (diff)
protobuf: new package
Diffstat (limited to 'package/protobuf')
-rw-r--r--package/protobuf/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/package/protobuf/Makefile b/package/protobuf/Makefile
new file mode 100644
index 000000000..bff6f1084
--- /dev/null
+++ b/package/protobuf/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
+PKG_VERSION:= 3.1.0
+PKG_RELEASE:= 1
+PKG_HASH:= 0a0ae63cbffc274efb573bdde9a253e3f32e458c41261df51c5dbc5ad541e8f7
+PKG_DESCR:= extensible mechanism for serializing structured data
+PKG_SECTION:= libs/misc
+PKG_URL:= https://developers.google.com/protocol-buffers/
+PKG_SITES:= https://github.com/google/protobuf/archive/
+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,protobuf,$(PKG_VERSION)-$(PKG_RELEASE)))
+$(eval $(call PKG_template,PROTOBUF,protobuf,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
+
+AUTOTOOL_STYLE:= autogen
+CONFIGURE_ARGS+= --with-protoc=$(STAGING_HOST_DIR)/usr/bin/protoc
+
+protobuf-install:
+ $(INSTALL_DIR) $(IDIR_PROTOBUF)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libprotobuf*.so* \
+ $(IDIR_PROTOBUF)/usr/lib
+
+include $(ADK_TOPDIR)/mk/host-bottom.mk
+include $(ADK_TOPDIR)/mk/pkg-bottom.mk