matio is an C library for reading and writing MATLAB MAT files.
Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
F: package/gqrx/
F: package/gr-osmosdr/
F: package/libusbgx/
+F: package/matio/
F: package/python-cheetah/
F: package/python-markdown/
F: package/python-remi/
source "package/liquid-dsp/Config.in"
source "package/llvm/Config.in"
source "package/lttng-libust/Config.in"
+ source "package/matio/Config.in"
source "package/mpc/Config.in"
source "package/mpdecimal/Config.in"
source "package/mpfr/Config.in"
--- /dev/null
+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
--- /dev/null
+# From https://sourceforge.net/projects/matio/files/matio/1.5.17/
+sha512 af8ff11c7c44fea9ea6886e381f49ef9186946f3def98ad9695f2d5d1df045c35e8f4ceac12a44be397f7bbd708b4803762b5ce54c45b60a9f446d551c04f5d2 matio-1.5.17.tar.gz
+# Locally computed
+sha256 62a0cab69eeadb3697a2249d5a869915b89e62b59b794dd70802c2b8624ed374 COPYING
--- /dev/null
+################################################################################
+#
+# matio
+#
+################################################################################
+
+MATIO_VERSION = 1.5.17
+MATIO_SITE = http://downloads.sourceforge.net/project/matio/matio/$(MATIO_VERSION)
+MATIO_LICENSE = BSD-2-Clause
+MATIO_LICENSE_FILES = COPYING
+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))