Odoc docs
1(lang dune 3.16)
2(name odd)
3
4(cram enable)
5
6(generate_opam_files true)
7
8(source (github jonludlam/odd))
9(license ISC)
10(authors "Jon Ludlam <jon@recoil.org>")
11(maintainers "Jon Ludlam <jon@recoil.org>")
12
13(package
14 (name odd)
15 (synopsis "Keep an opam switch's documentation up to date via opam hooks")
16 (description
17 "odd wires opam's post-install, post-remove and post-session hooks \
18 to an odoc driver so that the HTML documentation of every package \
19 installed in a switch is regenerated incrementally, in dependency order, \
20 after each opam invocation.")
21 (depends
22 (ocaml (>= 5.2.0))
23 (cmdliner (>= 1.3.0))
24 (bos (>= 0.2.1))
25 (fpath (>= 0.7.3))
26 (opam-format (>= 2.2.0))
27 sherlodoc
28 odoc
29 ; Dependencies of the forked driver (driver/).
30 odoc-md
31 progress
32 yojson
33 ocamlfind
34 logs
35 eio
36 sexplib))