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+ssh://git@github.com/vbrankov/hdf5-ocaml.git" 8build: [ 9 ["./configure" "--prefix=%{prefix}%"] 10 [make] 11] 12install: [make "install"] 13remove: [ 14 ["ocamlfind" "remove" "hdf5_caml"] 15 ["ocamlfind" "remove" "hdf5_raw"] 16] 17depends: [ 18 "ocaml" {>= "4.02" & < "4.11"} 19 "ocamlfind" {build} 20 "cppo" {build} 21 "cppo_ocamlbuild" {build} 22] 23depexts: [ 24 ["hdf5"] {os-distribution = "alpine"} 25 ["epel-release" "hdf5-devel"] {os-distribution = "centos"} 26 ["libhdf5-serial-dev"] {os-family = "debian"} 27 ["homebrew/science/hdf5"] {os-distribution = "homebrew" & os = "macos"} 28] 29synopsis: "Manages HDF5 files used for storing large amounts of data" 30description: 31 "The library manages reading and writing to HDF5 files. HDF5 file format is used for storing and organizing large amounts of data. Also provided is a fast way of working with large arrays of records, much faster than OCaml arrays of records." 32flags: light-uninstall 33url { 34 src: "https://github.com/vbrankov/hdf5-ocaml/archive/v0.1.4.tar.gz" 35 checksum: [ 36 "sha256=19678ef94e775a48c9f23fd94f8a9c6bae76412ecec73da2e600e1e0f03dcb17" 37 "md5=1fe2ba3b4eeb48b59e0adebc5e876a2b" 38 ] 39}