this repo has no description
1opam-version: "2.0"
2synopsis: "A pure OCaml R-Tree implementation"
3description:
4 "This implements a simple, functional R-Tree library in pure OCaml with support for efficient bulk loading of values."
5maintainer: ["patrick@sirref.org"]
6authors: ["Marius A. Eriksen" "Patrick Ferris"]
7license: "BSD-3-Clause"
8tags: ["spatial" "index"]
9homepage: "https://github.com/geocaml/ocaml-rtree"
10bug-reports: "https://github.com/geocaml/ocaml-rtree/issues"
11depends: [
12 "ocaml"
13 "dune" {>= "3.6"}
14 "repr" {>= "0.4.0"}
15 "bechamel" {with-test}
16 "vg" {with-test}
17 "ounit2" {with-test}
18 "mdx" {with-test & >= "2.2.0"}
19 "odoc" {with-doc}
20]
21build: [
22 ["dune" "subst"] {dev}
23 [
24 "dune"
25 "build"
26 "-p"
27 name
28 "-j"
29 jobs
30 "@install"
31 "@runtest" {with-test}
32 "@doc" {with-doc}
33 ]
34]
35dev-repo: "git+https://github.com/geocaml/ocaml-rtree.git"
36url {
37 src:
38 "https://github.com/geocaml/ocaml-rtree/releases/download/v0.1.0/rtree-0.1.0.tbz"
39 checksum: [
40 "sha256=d3049caa572793d872a7da5b01fa5d21f1e35a2b427877a38fb8d3a9aaa01704"
41 "sha512=4f7a6c07e443a216c52d3c68b387ad837ea1ef1adb0276082d2ddce70f4f295979b82455358b39ad18476b12c3f238d9182de580b535563a89dd158571f72f04"
42 ]
43}
44x-commit-hash: "d0a789b8eb6c594ed8c0f9c9a6c4b5cd7c734a03"