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"
11x-maintenance-intent: [ "(latest)" ]
12maintainer: "Chet Murthy <chetsky@gmail.com>"
13authors: ["Chet Murthy"]
14homepage: "https://github.com/camlp5/pa_ppx_static"
15license: "BSD-3-Clause"
16bug-reports: "https://github.com/camlp5/pa_ppx_static/issues"
17dev-repo: "git+https://github.com/camlp5/pa_ppx_static.git"
18doc: "https://github.com/camlp5/pa_ppx_static/doc"
19
20depends: [
21 "ocaml" { >= "4.10.0" }
22 "camlp5-buildscripts" { >= "0.02" }
23 "camlp5" { >= "8.01.00" }
24 "pcre2" { with-test }
25 "pa_ppx" { >= "0.12" }
26 "not-ocamlfind" { >= "0.10" }
27 "ounit" { >= "2.2.7" }
28 "fmt"
29(*
30 "mdx" { >= "2.3.0" & with-test}
31*)
32]
33build: [
34 [make "sys"]
35 [make "test"] {with-test}
36]
37install: [make "install"]
38url {
39 src: "https://github.com/camlp5/pa_ppx_static/archive/refs/tags/0.02.tar.gz"
40 checksum: [
41 "sha512=66f4d72175e1431262049aa2d3e6922e21e06ac1fd6601facfea1a34dee35ea47680618bb804d736fa71a7cae3cb55da60182735ac1529acff4ca491558b6210"
42 ]
43}