this repo has no description
1opam-version: "2.0"
2maintainer: "Vladimir Brankov <vbrankov@janestreet.com>"
3authors: "Vladimir Brankov <vbrankov@janestreet.com>"
4homepage: "https://github.com/vbrankov/hdf5-ocaml"
5bug-reports: "https://github.com/vbrankov/hdf5-ocaml/issues"
6license: "MIT"
7dev-repo: "git+https://github.com/vbrankov/hdf5-ocaml.git"
8build: [
9 ["dune" "build" "-p" name "-j" jobs]
10]
11depends: [
12 "cppo"
13 "dune" {>= "1.1.0"}
14 "dune-configurator"
15 "ocaml" {>= "4.04"}
16 "ppx_inline_test"
17 "ppx_tools_versioned"
18 "stdio"
19]
20depexts: [
21 ["hdf5"] {os-distribution = "alpine"}
22 ["epel-release" "hdf5-devel"] {os-distribution = "centos"}
23 ["libhdf5-dev"] {os-family = "debian"}
24 ["hdf5"] {os-distribution = "homebrew"}
25]
26synopsis: "Manages HDF5 files used for storing large amounts of data"
27description: "The library manages reading and writing to HDF5 files. HDF5 file
28format is used for storing and organizing large amounts of data. Also provided
29is a fast way of working with large arrays of records, much faster than OCaml
30arrays of records."
31url {
32 src: "https://github.com/vbrankov/hdf5-ocaml/archive/v0.1.5.tar.gz"
33 checksum: [
34 "md5=5e42f0b3f28a7ed8ba84998ee30ff8e7"
35 "sha512=17eea72e38f70f92a3b01cd10e0cae8839d8d214b5fa6507f9d435530afe17c88fbdd349157a12eead205e1cf66225d6282199404a3c26841366a57f5c69ff23"
36 ]
37}