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
+8
View File
@@ -0,0 +1,8 @@
config BR2_PACKAGE_MATIO
bool "matio"
select BR2_PACKAGE_ZLIB
help
matio is an C library for reading and writing MATLAB MAT
files.
https://sourceforge.net/projects/matio
+4
View File
@@ -0,0 +1,4 @@
# From https://sourceforge.net/projects/matio/files/matio/1.5.21/
sha512 b00bcad807e6a7e10afa656eb77a0e3e9fb08d9cecc3e94ba41ef91ce60367d6686e6d387a874bbb83eb2f895d4a97caac554a70e7f5f6f5cb750052702d411c matio-1.5.21.tar.gz
# Locally computed
sha256 69143d4a8f1933022bb909327df1ce812dd2420ed57949812dd8f370856bf2a1 COPYING
+21
View File
@@ -0,0 +1,21 @@
################################################################################
#
# matio
#
################################################################################
MATIO_VERSION = 1.5.21
MATIO_SITE = http://downloads.sourceforge.net/project/matio/matio/$(MATIO_VERSION)
MATIO_LICENSE = BSD-2-Clause
MATIO_LICENSE_FILES = COPYING
MATIO_CPE_ID_VENDOR = matio_project
MATIO_DEPENDENCIES = zlib
MATIO_INSTALL_STAGING = YES
# va_copy()
MATIO_CONF_ENV = ac_cv_va_copy=yes
# mat73 require hdf5 (not available), extented-sparse take 2KB
MATIO_CONF_OPTS = --disable-mat73 --enable-extended-sparse
$(eval $(autotools-package))