this repo has no description
1opam-version: "2.0" 2maintainer: "Linjie Ding <i@pyroc.at>" 3authors: "Linjie Ding <i@pyroc.at>" 4homepage: "https://github.com/pyrocat101/opal" 5bug-reports: "https://github.com/pyrocat101/opal/issues" 6license: "MIT" 7dev-repo: "git+https://github.com/pyrocat101/opal.git" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 10 ["ocaml" "setup.ml" "-build"] 11] 12install: ["ocaml" "setup.ml" "-install"] 13remove: ["ocamlfind" "remove" "opal"] 14depends: [ 15 "ocaml" {>= "4.01.0" & < "5.0.0"} 16 "ocamlfind" {build} 17 "ocamlbuild" {build} 18] 19synopsis: "Self-contained monadic parser combinators for OCaml" 20description: 21 "Opal is a minimum collection of useful parsers and combinators (~150 loc of OCaml) that makes writing parsers easier. It is designed to be small, self-contained, pure-functional, and only includes most essential parsers, so that one could include single file in the project or just embed it in other OCaml source code files." 22flags: light-uninstall 23url { 24 src: "https://github.com/pyrocat101/opal/archive/v0.1.0.tar.gz" 25 checksum: [ 26 "sha256=5c35c8ee9556f726e33ae85474ebf022584300239d83cdde57c9cd17dc724c77" 27 "md5=e9296ec6cd04e2365c49e9fcc0c69b60" 28 ] 29}