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: [make "ncl" "bcl"] 9install: [make "libinstall"] 10remove: ["ocamlfind" "remove" "opal"] 11depends: [ 12 "ocaml" {>= "4.01.0" & < "5.0.0"} 13 "ocamlfind" {build} 14] 15synopsis: "Self-contained monadic parser combinators for OCaml" 16description: 17 "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." 18flags: light-uninstall 19url { 20 src: "https://github.com/pyrocat101/opal/archive/v0.1.1.tar.gz" 21 checksum: [ 22 "sha256=7d9a70638ef414f7be4365d48fcd9af9295e2ebd6f2d172387abf1836c6ae353" 23 "md5=d294e29242d9ac2204dc95bb8d73e61b" 24 ] 25}