this repo has no description
1opam-version: "2.0" 2maintainer: "Philippe Wang <philippe.wang@gmail.com>" 3authors: [ "Philippe Wang <philippe.wang@gmail.com>" ] 4license: "ISC" 5homepage: "https://github.com/ocaml/omd" 6dev-repo: "git+https://github.com/ocaml/omd.git" 7bug-reports: "https://github.com/ocaml/omd/issues" 8tags: [ "org:ocamllabs" "org:mirage" ] 9build: [ 10 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 11 ["ocaml" "setup.ml" "-build"] 12 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 13 ["ocaml" "setup.ml" "-build"] {with-test} 14 ["ocaml" "setup.ml" "-test"] {with-test} 15] 16install: ["ocaml" "setup.ml" "-install"] 17remove: [ 18 ["ocaml" "%{etc}%/omd/setup.ml" "-C" "%{etc}%/omd" "-uninstall"] 19] 20depends: [ 21 "ocaml" {>= "4.01" & < "5.0.0"} 22 "base-bigarray" 23 "base-bytes" 24 "ocamlbuild" {build} 25 "ocamlfind" {build & >= "1.5"} 26] 27synopsis: "A Markdown frontend in pure OCaml." 28description: """ 29This Markdown library is implemented using only pure OCaml (including 30I/O operations provided by the standard OCaml compiler distribution). 31OMD is meant to be as faithful as possible to the original Markdown. 32Additionally, OMD implements a few Github markdown features, an 33extension mechanism, and some other features. Note that the opam 34package installs both the OMD library and the command line tool `omd`.""" 35url { 36 src: 37 "https://github.com/Chris00/omd/releases/download/1.3.1/omd-1.3.1.tar.gz" 38 checksum: [ 39 "sha256=8aef085a98c38a20483f953f7ba5fe15d712290b095624af3d7999d4ef7fede9" 40 "md5=845fc38e86ec0e85721130f2dd044d00" 41 ] 42}