Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] New package protobuf
@ 2012-03-07 18:06 Simon Dawson
  2012-03-07 19:23 ` Thomas Petazzoni
  0 siblings, 1 reply; 5+ messages in thread
From: Simon Dawson @ 2012-03-07 18:06 UTC (permalink / raw)
  To: buildroot

Patch to add protobuf package (Google protocol buffers) to buildroot.

http://code.google.com/p/protobuf/

---
diff --git a/package/Config.in b/package/Config.in
index 41cbb8c..a2d2006 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -387,6 +387,7 @@ source "package/liburcu/Config.in"
 source "package/lttng-libust/Config.in"
 source "package/orc/Config.in"
 source "package/poco/Config.in"
+source "package/protobuf/Config.in"
 source "package/startup-notification/Config.in"
 endmenu

diff --git a/package/protobuf/Config.in b/package/protobuf/Config.in
new file mode 100644
index 0000000..6a7447f
--- /dev/null
+++ b/package/protobuf/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PROTOBUF
+	bool "protobuf"
+	help
+	Protocol buffers are Google's language-neutral, platform-neutral,
+	extensible mechanism for serializing structured data.
+
+	 http://code.google.com/p/protobuf/
diff --git a/package/protobuf/protobuf.mk b/package/protobuf/protobuf.mk
new file mode 100644
index 0000000..79a06dd
--- /dev/null
+++ b/package/protobuf/protobuf.mk
@@ -0,0 +1,14 @@
+#############################################################
+#
+# protobuf
+#
+#############################################################
+PROTOBUF_VERSION = 2.4.1
+PROTOBUF_SITE = http://protobuf.googlecode.com/files/
+
+# N.B. Need to use host protoc during cross compilation.
+PROTOBUF_DEPENDENCIES = host-protobuf
+PROTOBUF_CONF_OPT = --with-protoc=$(HOST_DIR)/usr/bin/protoc
+
+$(eval $(call AUTOTARGETS))
+$(eval $(call AUTOTARGETS,host))

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-03-09 11:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-07 18:06 [Buildroot] New package protobuf Simon Dawson
2012-03-07 19:23 ` Thomas Petazzoni
2012-03-07 21:14   ` Simon Dawson
2012-03-09  8:16     ` Thomas Petazzoni
2012-03-09 11:27       ` Simon Dawson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox