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-gdal" 6bug-reports: "https://github.com/hcarty/ocaml-gdal/issues" 7dev-repo: "git+https://github.com/hcarty/ocaml-gdal.git" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 10 ["ocaml" "setup.ml" "-build"] 11] 12install: ["ocaml" "setup.ml" "-install"] 13 14remove: ["ocamlfind" "remove" "gdal"] 15 16depends: [ 17 "ocaml" {>= "4.02.1"} 18 "ocamlfind" {build} 19 "ctypes" {>= "0.4.0" & < "0.18.0"} 20 "ctypes-foreign" {>= "0.4.0"} 21 "ocamlbuild" {build} 22] 23depexts: [ 24 ["libgdal-dev"] {os-family = "debian"} 25 ["gdal"] {os = "macos" & os-distribution = "homebrew"} 26] 27synopsis: "Bindings to the GDAL and OGR libraries" 28flags: light-uninstall 29url { 30 src: "https://github.com/hcarty/ocaml-gdal/archive/v0.9.0.tar.gz" 31 checksum: [ 32 "sha256=799e520bdb708136f507ffcbb4c801ceca59e19541a18df42d21369cfdec7b95" 33 "md5=496f9fb7a1b33dcd8a59efbf8cd62e37" 34 ] 35}