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 ["ocaml" "setup.ml" "-configure" "--disable-cli"]
13 ["ocaml" "setup.ml" "-build"]
14 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test}
15 ["ocaml" "setup.ml" "-build"] {with-test}
16 ["ocaml" "setup.ml" "-test"] {with-test}
17 ["ocaml" "setup.ml" "-doc"] {with-doc}
18]
19install: ["ocaml" "setup.ml" "-install"]
20
21remove: [
22 ["ocamlfind" "remove" "mustache"]
23]
24
25depends: [
26 "ocaml" {>= "4.01.0" & < "5.0.0"}
27 "ocamlfind" {build}
28 "ocamlbuild" {build}
29 "ounit" {with-test}
30]
31synopsis: "Mustache logic-less templates in OCaml"
32description:
33 "Read and write mustache templates and render them by providing a json object"
34flags: light-uninstall
35url {
36 src: "https://github.com/rgrinberg/ocaml-mustache/archive/v2.3.0.tar.gz"
37 checksum: [
38 "sha256=fb6ad38285ecbe311a1278370aa496efd14a03997f8666a1fb64523d03dbb413"
39 "md5=3b79337e0eef9c1325f003c9efb4d568"
40 ]
41}