gnu: Add hdf5.
* gnu/packages/maths.scm (hdf5): New variable. * gnu/packages/maths.scm (octave): New input hdf5. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
436c95d9a7
commit
7ee3f1a208
|
@ -236,6 +236,36 @@ plotting engine by third-party applications like Octave.")
|
||||||
(license (license:fsf-free
|
(license (license:fsf-free
|
||||||
"http://gnuplot.cvs.sourceforge.net/gnuplot/gnuplot/Copyright"))))
|
"http://gnuplot.cvs.sourceforge.net/gnuplot/gnuplot/Copyright"))))
|
||||||
|
|
||||||
|
(define-public hdf5
|
||||||
|
(package
|
||||||
|
(name "hdf5")
|
||||||
|
(version "1.8.12")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-"
|
||||||
|
version ".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0f9n0v3p3lwc7564791a39c6cn1d3dbrn7d1j3ikqsi27a8hy23d"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(alist-replace
|
||||||
|
'configure
|
||||||
|
(lambda* (#:key target system outputs #:allow-other-keys #:rest args)
|
||||||
|
(let ((configure (assoc-ref %standard-phases 'configure)))
|
||||||
|
(substitute* "configure"
|
||||||
|
(("/bin/mv") "mv"))
|
||||||
|
(apply configure args)))
|
||||||
|
%standard-phases)))
|
||||||
|
(outputs '("out" "bin" "lib" "include"))
|
||||||
|
(home-page "http://www.hdfgroup.org")
|
||||||
|
(synopsis "Management suite for extremely large and complex data")
|
||||||
|
(description "HDF5 is a suite that makes possible the management of
|
||||||
|
extremely large and complex data collections.")
|
||||||
|
(license (license:x11-style "http://www.hdfgroup.org/ftp/HDF5/current/src/unpacked/COPYING"))))
|
||||||
|
|
||||||
|
|
||||||
;; For a fully featured Octave, users are strongly recommended also to install
|
;; For a fully featured Octave, users are strongly recommended also to install
|
||||||
;; the following packages: texinfo, less, ghostscript, gnuplot.
|
;; the following packages: texinfo, less, ghostscript, gnuplot.
|
||||||
(define-public octave
|
(define-public octave
|
||||||
|
@ -260,6 +290,8 @@ plotting engine by third-party applications like Octave.")
|
||||||
("fltk" ,fltk)
|
("fltk" ,fltk)
|
||||||
("fontconfig" ,fontconfig)
|
("fontconfig" ,fontconfig)
|
||||||
("freetype" ,freetype)
|
("freetype" ,freetype)
|
||||||
|
("hdf5-lib" ,hdf5 "lib")
|
||||||
|
("hdf5-include" ,hdf5 "include")
|
||||||
("libxft" ,libxft)
|
("libxft" ,libxft)
|
||||||
("mesa" ,mesa)
|
("mesa" ,mesa)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
|
|
Loading…
Reference in New Issue