this repo has no description
1opam-version: "2.0" 2maintainer: "rudi.grinberg@gmail.com" 3authors: ["Rudi Grinberg"] 4license: "MIT" 5 6homepage: "https://github.com/rgrinberg/ocaml-mustache" 7bug-reports: "https://github.com/rgrinberg/ocaml-mustache/issues" 8dev-repo: "git+https://github.com/rgrinberg/ocaml-mustache.git" 9doc: "http://mustache.github.io/mustache.5.html" 10 11build: [ 12 ["oasis" "setup"] 13 ["ocaml" "setup.ml" "-configure" "--disable-cli"] 14 ["ocaml" "setup.ml" "-build"] 15 ["oasis" "setup"] {with-test} 16 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 17 ["ocaml" "setup.ml" "-build"] {with-test} 18 ["ocaml" "setup.ml" "-test"] {with-test} 19 ["ocaml" "setup.ml" "-doc"] {with-doc} 20] 21install: ["ocaml" "setup.ml" "-install"] 22 23remove: [ 24 ["ocamlfind" "remove" "mustache"] 25] 26 27depends: [ 28 "ocaml" {>= "4.01.0"} 29 "ocamlfind" {build} 30 "oasis" {build & >= "0.4.0"} 31 "ocamlbuild" {build} 32 "ounit" {with-test} 33] 34synopsis: "Mustache logic-less templates in OCaml" 35description: 36 "Read and write mustache templates and render them by providing a json object" 37flags: light-uninstall 38url { 39 src: "https://github.com/rgrinberg/ocaml-mustache/archive/v2.1.0.tar.gz" 40 checksum: [ 41 "sha256=1441655cf856e7831076550573e8cf563f7297e984704065f7aaa070223fd520" 42 "md5=d7545f4b0b3088afd1c62a77225b4f61" 43 ] 44}