initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
config BR2_PACKAGE_ZYRE
bool "zyre"
depends on BR2_INSTALL_LIBSTDCPP # zeromq
depends on BR2_TOOLCHAIN_HAS_THREADS # zeromq
depends on BR2_USE_MMU # czmq
select BR2_PACKAGE_CZMQ
select BR2_PACKAGE_ZEROMQ
help
An open-source framework for proximity-based peer-to-peer
applications.
http://zyre.org
comment "zyre needs a toolchain w/ C++, threads"
depends on BR2_USE_MMU
depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS)
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 624d379dc880025144f58d3a7dc35ea1be4a57ba4e2a58c98ec15a60891be12d zyre-2.0.1.tar.gz
sha256 1f256ecad192880510e84ad60474eab7589218784b9a50bc7ceee34c2b91f1d5 LICENSE
+22
View File
@@ -0,0 +1,22 @@
################################################################################
#
# zyre
#
################################################################################
ZYRE_VERSION = 2.0.1
ZYRE_SITE = $(call github,zeromq,zyre,v$(ZYRE_VERSION))
ZYRE_LICENSE = MPL-2.0
ZYRE_LICENSE_FILES = LICENSE
ZYRE_INSTALL_STAGING = YES
ZYRE_DEPENDENCIES = czmq zeromq host-pkgconf
ZYRE_AUTORECONF = YES
ZYRE_CONF_OPTS = --without-docs
define ZYRE_CREATE_CONFIG_DIR
mkdir -p $(@D)/config
endef
ZYRE_POST_PATCH_HOOKS += ZYRE_CREATE_CONFIG_DIR
$(eval $(autotools-package))