68 lines
2 KiB
Ruby
68 lines
2 KiB
Ruby
class Libmatio < Formula
|
|
desc "C library for reading and writing MATLAB MAT files"
|
|
homepage "https://matio.sourceforge.io/"
|
|
url "https://downloads.sourceforge.net/project/matio/matio/1.5.12/matio-1.5.12.tar.gz"
|
|
sha256 "8695e380e465056afa5b5e20128935afe7d50e03830f9f7778a72e1e1894d8a9"
|
|
revision 3
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "807a6c962eb5d435c89d08d3682d5995f31915c3aa16f546acf019e35e2251fe" => :mojave
|
|
sha256 "d49e9124679c6df7cba871bdb216d9bdfc0af71feee53007ff5cc7a0a6818638" => :high_sierra
|
|
sha256 "2315d4a3692ea982933e4baa7ec238295a6514c4a3c08ada8d00d4323bb74a76" => :sierra
|
|
end
|
|
|
|
depends_on "hdf5"
|
|
|
|
resource "test_mat_file" do
|
|
url "https://web.uvic.ca/~monahana/eos225/poc_data.mat.sfx"
|
|
sha256 "a29df222605476dcfa660597a7805176d7cb6e6c60413a3e487b62b6dbf8e6fe"
|
|
end
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--enable-extended-sparse=yes
|
|
--enable-mat73=yes
|
|
--with-hdf5=#{Formula["hdf5"].opt_prefix}
|
|
--with-zlib=/usr
|
|
]
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
testpath.install resource("test_mat_file")
|
|
(testpath/"mat.c").write <<~'EOS'
|
|
#include <stdlib.h>
|
|
#include <matio.h>
|
|
|
|
size_t dims[2] = {5, 5};
|
|
double data[25] = {0.0, };
|
|
mat_t *mat;
|
|
matvar_t *matvar;
|
|
|
|
int main(int argc, char **argv) {
|
|
if (!(mat = Mat_Open(argv[1], MAT_ACC_RDONLY)))
|
|
abort();
|
|
Mat_Close(mat);
|
|
|
|
mat = Mat_CreateVer("test_writenan.mat", NULL, MAT_FT_DEFAULT);
|
|
if (mat) {
|
|
matvar = Mat_VarCreate("foo", MAT_C_DOUBLE, MAT_T_DOUBLE, 2,
|
|
dims, data, MAT_F_DONT_COPY_DATA);
|
|
Mat_VarWrite(mat, matvar, MAT_COMPRESSION_NONE);
|
|
Mat_VarFree(matvar);
|
|
Mat_Close(mat);
|
|
} else {
|
|
abort();
|
|
}
|
|
mat = Mat_CreateVer("foo", NULL, MAT_FT_MAT73);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
EOS
|
|
system ENV.cc, "mat.c", "-o", "mat", "-I#{include}", "-L#{lib}", "-lmatio"
|
|
system "./mat", "poc_data.mat.sfx"
|
|
end
|
|
end
|