this repo has no description
1opam-version: "2.0" 2maintainer: "hez@0ok.org" 3authors: [ "Hezekiah M. Carty" ] 4license: "MIT" 5homepage: "https://github.com/hcarty/ocaml-grib" 6bug-reports: "https://github.com/hcarty/ocaml-grib/issues" 7dev-repo: "git+https://github.com/hcarty/ocaml-grib.git" 8tags: [ "clib:png" "clib:openjpeg" "clib:m" "clib:jpeg" "clib:jasper" 9 "clib:grib" "weather" "grib" ] 10build: [ 11 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 12 ["ocaml" "setup.ml" "-build"] 13] 14install:["ocaml" "setup.ml" "-install"] 15remove: ["ocamlfind" "remove" "grib"] 16depends: [ 17 "ocaml" {>= "4.02.1"} 18 "bear" 19 "ocamlfind" {build} 20 "ocamlbuild" {build} 21] 22depexts: [ 23 ["libjpeg-dev" "libopenjpeg-dev" "libgrib-api-dev" "libpng-dev"] 24 {os-family = "debian" & os-distribution != "ubuntu"} 25 [ 26 "libjpeg-dev" 27 "libjasper-dev" 28 "libopenjpeg-dev" 29 "libgrib-api-dev" 30 "libpng-dev" 31 ] {os-distribution = "ubuntu"} 32] 33synopsis: "Bindings for the ECMWF GRIB API" 34flags: light-uninstall 35url { 36 src: "https://github.com/hcarty/ocaml-grib/archive/v0.11.0.tar.gz" 37 checksum: [ 38 "sha256=3464eca9f25050a24ddee15cc9da7535cf2d2bcd06102595fb6014364579bb94" 39 "md5=7e1b8cc9bcd7a407d75578f61d6e22dd" 40 ] 41}