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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
version: "2.1.1"
opam-version: "2.0"
homepage: "http://github.com/ocaml/odoc"
doc: "https://ocaml.github.io/odoc/"
bug-reports: "https://github.com/ocaml/odoc/issues"
license: "ISC"
authors: [
"Thomas Refis <trefis@janestreet.com>"
"David Sheets <sheets@alum.mit.edu>"
"Leo White <leo@lpw25.net>"
"Anton Bachin <antonbachin@yahoo.com>"
"Jon Ludlam <jon@recoil.org>"
"Jules Aguillon <juloo.dsi@gmail.com>"
"Lubega Simon <lubegasimon73@gmail.com>"
]
maintainer: "Jon Ludlam <jon@recoil.org>"
dev-repo: "git+https://github.com/ocaml/odoc.git"
synopsis: "OCaml documentation generator"
description: """
Odoc is a documentation generator for OCaml. It reads doc comments,
delimited with `(** ... *)`, and outputs HTML.
"""
depends: [
"odoc-parser" {>= "0.9.0"}
"astring"
"cmdliner" {>= "1.0.0"}
"cppo" {build & >= "1.1.0"}
"dune" {>= "2.9.1"}
"fpath"
"ocaml" {>= "4.02.0"}
"result"
"tyxml" {>= "4.3.0"}
"fmt"
"ocamlfind" {with-test}
"yojson" {< "2.0.0" & with-test}
("ocaml" {< "4.04.1" & with-test} | "sexplib0" {with-test})
"conf-jq" {with-test}
"ppx_expect" {with-test}
"bos" {with-test}
"bisect_ppx" {dev & > "2.5.0"}
("ocaml" {< "4.03.0" & dev} | "mdx" {dev})
]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
]
|