-
Notifications
You must be signed in to change notification settings - Fork 90
/
odoc-md.opam
47 lines (41 loc) · 1 KB
/
odoc-md.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
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: [
"Jon Ludlam <[email protected]>"
"Jules Aguillon <[email protected]>"
"Paul-Elliot Anglès d'Auriac <[email protected]>"
]
authors: [
"Daniel Bünzli <[email protected]>"
"Paul-Elliot Anglès d'Auriac <[email protected]>"
"Jon Ludlam <[email protected]>"
]
dev-repo: "git+https://github.com/ocaml/odoc.git"
synopsis: "OCaml Documentation Generator - Markdown support"
description: """
Odoc-md is part of the odoc suite of tools for generating documentation for OCaml packages.
This package provides support for generating documentation from Markdown files.
"""
depends: [
"ocaml" {>= "4.14.0"}
"odoc" {= version}
"cmarkit"
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]