-
Notifications
You must be signed in to change notification settings - Fork 10
/
geojson.opam
35 lines (35 loc) · 938 Bytes
/
geojson.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Pure OCaml library for GeoJSON"
description:
"GeoJSON is a 'schema' for JSON to describe geospatial information. This library provides a JSON-parser-agnostic library for manipulating and parsing GeoJSON into OCaml."
maintainer: ["[email protected]"]
authors: ["Patrick Ferris"]
license: "MIT"
tags: ["geojson" "geospatial" "geocaml"]
homepage: "https://github.com/geocaml/ocaml-geojson"
bug-reports: "https://github.com/geocaml/ocaml-geojson/issues"
depends: [
"dune" {>= "3.2"}
"ocaml" {>= "4.08.0"}
"bos" {with-test}
"mdx" {with-test}
"alcotest" {with-test}
"ezjsonm" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/geocaml/ocaml-geojson.git"