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: ["Nicolás Ojeda Bär <n.oje.bar@gmail.com>"]
11authors: [
12 "Philippe Wang <philippe.wang@gmail.com>"
13 "Nicolás Ojeda Bär <n.oje.bar@gmail.com>"
14]
15license: "ISC"
16tags: ["org:ocamllabs" "org:mirage"]
17homepage: "https://github.com/ocaml/omd"
18bug-reports: "https://github.com/ocaml/omd/issues"
19depends: [
20 "ocaml" {>= "4.04"}
21 "dune" {>= "2.5"}
22]
23build: [
24 ["dune" "subst"] {dev}
25 [
26 "dune"
27 "build"
28 "-p"
29 name
30 "-j"
31 jobs
32 "@install"
33 "@runtest" {with-test}
34 "@doc" {with-doc}
35 ]
36]
37dev-repo: "git+https://github.com/ocaml/omd.git"
38x-commit-hash: "a01807ec69c03781db9149d8a6759db049c936b8"
39url {
40 src:
41 "https://github.com/ocaml/opam-source-archives/raw/main/omd-2.0.0.alpha1.tbz"
42 checksum: [
43 "sha256=5800b920db48d68fa77d8270d64a45989eac398f76d733267827c9a0b2a90390"
44 "sha512=0c545a52a706a47fd9fe233f3daf7d4d4907ddd32b6faa9bb75df9086995f44ea341ed9b30d334c393d4f340c7f3bc27e99a0f8cb70943c7d4bd30128ed51fef"
45 ]
46}