this repo has no description
1opam-version: "2.0"
2maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>"
3authors: [ "Christophe Troestler <Christophe.Troestler@umons.ac.be>" ]
4tags: [ "web" "template" ]
5license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception"
6homepage: "https://github.com/Chris00/weberizer"
7dev-repo: "git+https://github.com/Chris00/weberizer.git"
8bug-reports: "https://github.com/Chris00/weberizer/issues"
9doc: "https://Chris00.github.io/weberizer/doc"
10build: [
11 [ "jbuilder" "subst" "-p" name ] {dev}
12 [ "jbuilder" "build" "-p" name "-j" jobs ]
13]
14depends: [
15 "ocaml" {>= "4.03"}
16 "jbuilder" {>= "1.0+beta7"}
17 "ocamlnet"
18]
19synopsis: "Compile HTML templates into OCaml modules"
20description: """
21Weberizer is a simple templating engine for OCaml. It compiles the
22template to an OCaml module, providing an easy way to set the
23variables and render the template. String values are automatically
24escaped according to the context of the template in which they appear.
25You can add you own functions to the generated module — for example to
26set several related variables at once (you can also hide those
27variables from the interface if desired)."""
28url {
29 src:
30 "https://github.com/Chris00/weberizer/releases/download/0.7.8/weberizer-0.7.8.tbz"
31 checksum: [
32 "sha256=f0f9bfc250c1176152389ac513004423131281f84da751b4f11eb81d3761df24"
33 "md5=00404cfa89d106f5d527ad46e2b3fdea"
34 ]
35}