guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

09/10: gnu: Add Matio.


From: Eric Bavier
Subject: 09/10: gnu: Add Matio.
Date: Thu, 12 May 2016 20:02:43 +0000 (UTC)

bavier pushed a commit to branch master
in repository guix.

commit 6c90e183cf2729c046ec31fff4ef3293d0052b11
Author: Eric Bavier <address@hidden>
Date:   Tue Apr 12 09:59:26 2016 -0500

    gnu: Add Matio.
    
    * gnu/packages/maths.scm (matio): New variable.
---
 gnu/packages/maths.scm |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 76aecbc..57d27a1 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -2328,3 +2328,25 @@ problems.")
 solvers for the solution of large, sparse linear systems of equations on
 parallel computers.  It features parallel multigrid solvers for both
 structured and unstructured grid problems.")))
+
+(define-public matio
+  (package
+    (name "matio")
+    (version "1.5.6")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://sourceforge/matio/" version "/"
+                           "matio-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0y2qymgxank8wdiwc68ap8bxdzrhvyw86i29yh3xgn4z1njfd9ir"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("zlib" ,zlib)
+       ("hdf5" ,hdf5)))
+    (home-page "http://matio.sourceforge.net/";)
+    (synopsis "Library for reading and writing MAT files")
+    (description "Matio is a library for reading and writing MAT files.  It
+supports compressed MAT files, as well as newer (version 7.3) MAT files.")
+    (license license:bsd-2)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]