forked from ocaml/odoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
odoc-driver.opam
65 lines (59 loc) · 1.35 KB
/
odoc-driver.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
opam-version: "2.0"
version: "dev"
homepage: "https://github.com/ocaml/odoc"
doc: "https://ocaml.github.io/odoc/"
bug-reports: "https://github.com/ocaml/odoc/issues"
license: "ISC"
maintainer: [
"Daniel Bünzli <daniel.buenzli@erratique.ch>"
"Jon Ludlam <jon@recoil.org>"
"Jules Aguillon <juloo.dsi@gmail.com>"
"Paul-Elliot Anglès d'Auriac <paul-elliot@tarides.com>"
]
authors: [
"Anton Bachin <antonbachin@yahoo.com>"
"Daniel Bünzli <daniel.buenzli@erratique.ch>"
"David Sheets <sheets@alum.mit.edu>"
"Jon Ludlam <jon@recoil.org>"
"Jules Aguillon <juloo.dsi@gmail.com>"
"Leo White <leo@lpw25.net>"
"Lubega Simon <lubegasimon73@gmail.com>"
"Paul-Elliot Anglès d'Auriac <paul-elliot@tarides.com>"
"Thomas Refis <trefis@janestreet.com>"
]
dev-repo: "git+https://github.com/ocaml/odoc.git"
synopsis: "OCaml Documentation Generator - Driver"
description: """
The driver is a sample implementation of a tool to drive odoc to generate
documentation for installed packages.
"""
depends: [
"ocaml" {>= "5.1.0"}
"odoc" {= version}
"bos"
"fpath"
"yojson"
"ocamlfind"
"opam-format"
"logs"
"eio_main"
"progress"
"cmdliner"
"sexplib"
"ppx_sexp_conv"
"sherlodoc"
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]