this repo has no description
1opam-version: "2.0" 2maintainer: "Hezekiah M. Carty <hez@0ok.org>" 3authors: [ "Hezekiah M. Carty <hez@0ok.org>" ] 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 ["jbuilder" "build" "-p" name "-j" jobs] 10 ["jbuilder" "runtest" "-p" name] {with-test} 11 ["jbuilder" "build" "@doc" "-p" name] {with-doc} 12] 13depends: [ 14 "ocaml" {>= "4.02.1"} 15 "jbuilder" {>= "1.0+beta20"} 16 "ctypes" {>= "0.4.0"} 17 "ctypes-foreign" {>= "0.4.0"} 18] 19synopsis: "GDAL and OGR bindings" 20description: """ 21This library provides access to the GDAL library (http://www.gdal.org/). It 22provides both direct, low-level access to GDAL and OGR library functions as 23well as a higher level, more OCaml-like interface. 24 25The API is [viewable here](http://hcarty.github.io/ocaml-gdal/gdal/index.html).""" 26url { 27 src: 28 "https://github.com/hcarty/ocaml-gdal/releases/download/v0.10.0/gdal-0.10.0.tbz" 29 checksum: [ 30 "sha256=001afec1186dc0eb8d90359a3e7f943ab61585550e0710a2af54efa181abb5b6" 31 "md5=0028cfb7778c25fcd4b429411c21ee24" 32 ] 33}