msgpack: new package
Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
217438db67
commit
a20fc5ae2b
@ -623,6 +623,7 @@ source "package/log4cxx/Config.in"
|
||||
source "package/lttng-libust/Config.in"
|
||||
source "package/mpc/Config.in"
|
||||
source "package/mpfr/Config.in"
|
||||
source "package/msgpack/Config.in"
|
||||
source "package/mtdev2tuio/Config.in"
|
||||
source "package/orc/Config.in"
|
||||
source "package/p11-kit/Config.in"
|
||||
|
13
package/msgpack/Config.in
Normal file
13
package/msgpack/Config.in
Normal file
@ -0,0 +1,13 @@
|
||||
config BR2_PACKAGE_MSGPACK
|
||||
bool "msgpack"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
help
|
||||
MessagePack is an efficient binary serialization format.
|
||||
|
||||
It lets you exchange data among multiple languages like JSON but
|
||||
it's faster and smaller.
|
||||
|
||||
http://msgpack.org/
|
||||
|
||||
comment "msgpack requires a toolchain with C++ support enabled"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP
|
12
package/msgpack/msgpack.mk
Normal file
12
package/msgpack/msgpack.mk
Normal file
@ -0,0 +1,12 @@
|
||||
################################################################################
|
||||
#
|
||||
# msgpack
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MSGPACK_VERSION = 0.5.4
|
||||
MSGPACK_SITE = http://downloads.sourceforge.net/project/msgpack/msgpack/cpp/
|
||||
MSGPACK_LICENSE = Apache-2.0
|
||||
MSGPACK_LICENSE_FILES = COPYING
|
||||
|
||||
$(eval $(autotools-package))
|
Loading…
Reference in New Issue
Block a user