this repo has no description
1
2synopsis: "A Camlp5 PPX Rewriter for static blocks "
3description:
4"""
5This is a PPX Rewriter to provide `static' blocks
6for OCaml, so you can write code that computes some
7expensive expression and mark it as static, so it'll
8be computed only once. Like regexps.
9"""
10opam-version: "2.0"
11maintainer: "Chet Murthy <chetsky@gmail.com>"
12authors: ["Chet Murthy"]
13homepage: "https://github.com/camlp5/pa_ppx_static"
14license: "BSD-3-Clause"
15bug-reports: "https://github.com/camlp5/pa_ppx_static/issues"
16dev-repo: "git+https://github.com/camlp5/pa_ppx_static.git"
17doc: "https://github.com/camlp5/pa_ppx_static/doc"
18
19depends: [
20 "ocaml" { >= "4.10.0" & < "5.01.0" }
21 "camlp5-buildscripts" { >= "0.02" & < "0.03" }
22 "camlp5" { >= "8.01.00" }
23 "pa_ppx" { >= "0.12" }
24 "not-ocamlfind" { >= "0.10" }
25 "ounit" { >= "2.2.7" }
26 "fmt"
27 "mdx" {with-test}
28]
29build: [
30 [make "sys"]
31 [make "test"] {with-test}
32]
33install: [make "install"]
34url {
35 src: "https://github.com/camlp5/pa_ppx_static/archive/refs/tags/0.01.tar.gz"
36 checksum: [
37 "sha512=6c92176ad290a1c8b04a4297a345e40590284301c93d43059bb976f4603a9e61f4534359401d056a9aff7aff9f4d17bca20a4e1c4b1fd5c8f2f03619f80a4bd8"
38 ]
39}