2022-04-05 16:33:14 +02:00
|
|
|
opam-version: "2.0"
|
2025-02-06 02:39:11 +01:00
|
|
|
name: "leaflet"
|
|
|
|
|
version: "0.2"
|
2022-04-12 13:46:37 +02:00
|
|
|
synopsis: "Bindings for the Leaflet JavaScript library"
|
|
|
|
|
description:
|
|
|
|
|
"leaflet is an OCaml bindings library for the Leaflet JavaScript library."
|
|
|
|
|
maintainer: ["swrup <swrup@protonmail.com>"]
|
|
|
|
|
authors: [
|
|
|
|
|
"pukkamustard <pukkamustard@posteo.net>"
|
|
|
|
|
"swrup <swrup@protonmail.com>"
|
2026-03-19 21:37:09 +01:00
|
|
|
"pena <pena@kumikode.org>"
|
2022-04-12 13:46:37 +02:00
|
|
|
]
|
|
|
|
|
license: "BSD-2-Clause"
|
|
|
|
|
tags: ["leaflet" "javascript" "bindings" "interactive" "map" "openstreetmap"]
|
2026-03-19 21:37:09 +01:00
|
|
|
homepage: "https://forge.kumikode.org/kumikode/leaflet"
|
|
|
|
|
bug-reports: "https://forge.kumikode.org/kumikode/leaflet/issues"
|
2022-04-05 16:33:14 +02:00
|
|
|
depends: [
|
|
|
|
|
"dune" {>= "2.9"}
|
2025-02-06 01:28:39 +01:00
|
|
|
"ocaml" {>= "4.08"}
|
2022-05-19 23:02:04 +02:00
|
|
|
"brr"
|
2022-06-18 20:47:19 +02:00
|
|
|
"js_of_ocaml"
|
2024-02-08 15:58:52 +01:00
|
|
|
"dune-site"
|
2025-02-06 01:28:39 +01:00
|
|
|
"tiny_httpd" {with-test}
|
2022-04-05 16:33:14 +02:00
|
|
|
"odoc" {with-doc}
|
|
|
|
|
]
|
|
|
|
|
build: [
|
|
|
|
|
["dune" "subst"] {dev}
|
|
|
|
|
[
|
|
|
|
|
"dune"
|
|
|
|
|
"build"
|
|
|
|
|
"-p"
|
|
|
|
|
name
|
|
|
|
|
"-j"
|
|
|
|
|
jobs
|
|
|
|
|
"--promote-install-files=false"
|
|
|
|
|
"@install"
|
|
|
|
|
"@runtest" {with-test}
|
|
|
|
|
"@doc" {with-doc}
|
|
|
|
|
]
|
|
|
|
|
["dune" "install" "-p" name "--create-install-files" name]
|
|
|
|
|
]
|
2026-03-19 21:37:09 +01:00
|
|
|
dev-repo: "git+https://forge.kumikode.org/kumikode/leaflet.git"
|