this repo has no description
1opam-version: "2.0" 2maintainer: "Max Mouratov <mmouratov@gmail.com>" 3authors: "Holger Arnold <holger@harnold.org>" 4homepage: "https://github.com/cakeplus/mparser/" 5license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 6dev-repo: "git+https://github.com/cakeplus/mparser" 7bug-reports: "https://github.com/cakeplus/mparser/issues" 8depends: [ 9 "ocaml" {< "5.0.0"} 10 "ocamlfind" 11 "ocamlbuild" {build} 12 "base-bytes" 13 "ocamlbuild" {build} 14] 15depopts: [ 16 "re" 17 "pcre" 18] 19build: [ 20 ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--%{re:enable}%-re" "--%{pcre:enable}%-pcre"] 21 ["ocaml" "setup.ml" "-build"] 22] 23install: [ 24 ["ocaml" "setup.ml" "-install"] 25] 26remove: [ 27 ["ocamlfind" "remove" "mparser"] 28] 29synopsis: "A simple monadic parser combinator library" 30description: """ 31This library implements a rather complete and efficient monadic 32parser combinator library similar to the Parsec library for Haskell by Daan 33Leijen and the FParsec library for FSharp by Stephan Tolksdorf.""" 34flags: light-uninstall 35url { 36 src: 37 "https://github.com/ocaml/opam-source-archives/raw/main/mparser-1.2.tar.gz" 38 checksum: [ 39 "sha256=def84ed84fcea32fa39883e5c72f289b729a36e92d58adfc63a4c11e7e48f3be" 40 "md5=69c26815b327c02e87d78f39237bfc60" 41 ] 42}