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
+11
View File
@@ -0,0 +1,11 @@
config BR2_PACKAGE_TCLLIB
bool "tcllib"
help
Tcllib is a collection of utility modules for Tcl. These
modules provide a wide variety of functionality, from
implementations of standard data structures to
implementations of common networking protocols. The intent
is to collect commonly used function into a single library,
which users can rely on to be available and stable
https://www.tcl.tk/software/tcllib/
+3
View File
@@ -0,0 +1,3 @@
# Locally computed:
sha256 0db9e17d6c0f44d3ca2df2ea5023e35c0f3767e7008c3cb26d201446eb68add1 tcllib-1.13.tar.bz2
sha256 530ec70eb11a455bd582d86b6d74c2dd7cc367d90b8bbdd59fcb43ae02f95a4b license.terms
+15
View File
@@ -0,0 +1,15 @@
################################################################################
#
# tcllib
#
################################################################################
TCLLIB_VERSION = 1.13
TCLLIB_SOURCE = tcllib-$(TCLLIB_VERSION).tar.bz2
TCLLIB_SITE = http://downloads.sourceforge.net/project/tcllib/tcllib/$(TCLLIB_VERSION)
TCLLIB_LICENSE = TCL
TCLLIB_LICENSE_FILES = license.terms
TCLLIB_DEPENDENCIES = host-tcl
TCLLIB_CONF_ENV = ac_cv_path_tclsh="$(HOST_DIR)/bin/tclsh$(TCL_VERSION_MAJOR)"
$(eval $(autotools-package))