this repo has no description
1opam-version: "2.0"
2synopsis: "A Markdown frontend in pure OCaml"
3description: """
4This Markdown library is implemented using only pure OCaml (including
5I/O operations provided by the standard OCaml compiler distribution).
6OMD is meant to be as faithful as possible to the original Markdown.
7Additionally, OMD implements a few Github markdown features, an
8extension mechanism, and some other features. Note that the opam
9package installs both the OMD library and the command line tool `omd`."""
10maintainer: [
11 "Shon Feder <shon.feder@gmail.com>" "Raphael Sousa Santos <@sonologico>"
12]
13authors: [
14 "Philippe Wang <philippe.wang@gmail.com>"
15 "Nicolás Ojeda Bär <n.oje.bar@gmail.com>"
16]
17license: "ISC"
18tags: ["org:ocamllabs" "org:mirage"]
19homepage: "https://github.com/ocaml/omd"
20bug-reports: "https://github.com/ocaml/omd/issues"
21depends: [
22 "dune" {>= "2.7"}
23 "ocaml" {>= "4.13"}
24 "uutf"
25 "uucp"
26 "uunf"
27 "dune-build-info" {>= "2.7"}
28 "ppx_expect" {with-test}
29 "odoc" {with-doc}
30]
31build: [
32 ["dune" "subst"] {dev}
33 [
34 "dune"
35 "build"
36 "-p"
37 name
38 "-j"
39 jobs
40 "@install"
41 "@runtest" {with-test}
42 "@doc" {with-doc}
43 ]
44]
45dev-repo: "git+https://github.com/ocaml/omd.git"
46url {
47 src:
48 "https://github.com/ocaml/opam-source-archives/raw/main/omd-2.0.0.alpha4.tbz"
49 checksum: [
50 "sha256=93969697875b005b8225e6d3475d1296ec45e98680bbd21945c9a4bf6a62df1c"
51 "sha512=cf86b7bf94581489f7dae5922a4c669691128b500f52a5b9acc3af2c062db8c5e992c9116cf2ac067f2b9777cdd1e027d8ca1152cb8c1606208c6401ea1d8662"
52 ]
53}
54x-commit-hash: "373e3f80e48001a62daf4072373ad3aa589ca65f"