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