protobuf-c: new package
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Thu, 11 Apr 2013 04:41:35 +0000 (04:41 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 14 Apr 2013 21:51:20 +0000 (23:51 +0200)
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/Config.in
package/protobuf-c/Config.in [new file with mode: 0644]
package/protobuf-c/protobuf-c.mk [new file with mode: 0644]

index 4282185708f68622c1a483311efde4162b0a8fe8..566d941bc97ff70e9e1ee5feeb3ca00dcb83480c 100644 (file)
@@ -586,6 +586,7 @@ source "package/mtdev2tuio/Config.in"
 source "package/orc/Config.in"
 source "package/poco/Config.in"
 source "package/protobuf/Config.in"
+source "package/protobuf-c/Config.in"
 source "package/schifra/Config.in"
 source "package/startup-notification/Config.in"
 source "package/liblog4c-localtime/Config.in"
diff --git a/package/protobuf-c/Config.in b/package/protobuf-c/Config.in
new file mode 100644 (file)
index 0000000..9aff6e2
--- /dev/null
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_PROTOBUF_C
+       bool "protobuf-c"
+       depends on BR2_INSTALL_LIBSTDCPP
+       select BR2_PACKAGE_PROTOBUF
+       help
+         Code generator and runtime libraries to use Protocol Buffers
+         from pure C (not C++).
+
+         http://code.google.com/p/protobuf-c/
+
+comment "protobuf-c requires a toolchain with C++ support enabled"
+       depends on !BR2_INSTALL_LIBSTDCPP
diff --git a/package/protobuf-c/protobuf-c.mk b/package/protobuf-c/protobuf-c.mk
new file mode 100644 (file)
index 0000000..eb0047a
--- /dev/null
@@ -0,0 +1,16 @@
+#############################################################
+#
+# protobuf-c
+#
+#############################################################
+
+PROTOBUF_C_VERSION = 0.15
+PROTOBUF_C_SITE = http://protobuf-c.googlecode.com/files
+PROTOBUF_C_DEPENDENCIES = protobuf host-protobuf-c
+HOST_PROTOBUF_C_DEPENDENCIES = host-protobuf
+PROTOBUF_C_CONF_OPT = --disable-protoc
+PROTOBUF_C_INSTALL_STAGING = YES
+PROTOBUF_C_LICENSE = BSD-3c
+
+$(eval $(autotools-package))
+$(eval $(host-autotools-package))