initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
config BR2_PACKAGE_MSGPACK
|
||||
bool "msgpack"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
||||
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 needs a toolchain w/ C++"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
||||
@@ -0,0 +1,4 @@
|
||||
# Locally computed:
|
||||
sha256 6e114d12a5ddb8cb11f669f83f32246e484a8addd0ce93f274996f1941c1f07b msgpack-3.3.0.tar.gz
|
||||
sha256 664550b43996452a5a2c7471bb0ff77185a58c69ccafa60f983dc4c162e1ee22 COPYING
|
||||
sha256 c9bff75738922193e67fa726fa225535870d2aa1059f91452c411736284ad566 LICENSE_1_0.txt
|
||||
@@ -0,0 +1,18 @@
|
||||
################################################################################
|
||||
#
|
||||
# msgpack
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MSGPACK_VERSION = 3.3.0
|
||||
MSGPACK_SITE = https://github.com/msgpack/msgpack-c/releases/download/cpp-$(MSGPACK_VERSION)
|
||||
MSGPACK_LICENSE = BSL-1.0
|
||||
MSGPACK_LICENSE_FILES = COPYING LICENSE_1_0.txt
|
||||
MSGPACK_INSTALL_STAGING = YES
|
||||
MSGPACK_CONF_OPTS = -DMSGPACK_BUILD_EXAMPLES=OFF -DMSGPACK_BUILD_TESTS=OFF
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
MSGPACK_CONF_OPTS += -DMSGPACK_ENABLE_SHARED=OFF
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
Reference in New Issue
Block a user