this repo has no description
1synopsis: "A Camlp5 PPX Rewriter for String Interpolation " 2description: 3""" 4This is a PPX Rewriter for interpolating strings, meant to 5be a work-alike to ppx_string, but instead based on Camlp5 6(so it's compatible with all the other Camlp5-based PPX rewriters). 7""" 8opam-version: "2.0" 9x-maintenance-intent: [ "(latest)" ] 10maintainer: "Chet Murthy <chetsky@gmail.com>" 11authors: ["Chet Murthy"] 12homepage: "https://github.com/camlp5/pa_ppx_string" 13license: "BSD-3-Clause" 14bug-reports: "https://github.com/camlp5/pa_ppx_string/issues" 15dev-repo: "git+https://github.com/camlp5/pa_ppx_string.git" 16doc: "https://github.com/camlp5/pa_ppx_string/doc" 17 18depends: [ 19 "ocaml" { >= "4.10.0" } 20 "conf-perl" 21 "conf-perl-ipc-system-simple" 22 "conf-perl-string-shellquote" 23 "camlp5" { >= "8.00.04" } 24 "pa_ppx" { >= "0.10" } 25 "not-ocamlfind" { >= "0.01" } 26 "ounit" {with-test} 27 "fmt" 28 "re" { >= "1.10.4" } 29] 30build: [ 31 [make "sys"] 32 [make "test"] {with-test} 33] 34install: [make "install"] 35url { 36 src: "https://github.com/camlp5/pa_ppx_string/archive/refs/tags/0.01.tar.gz" 37 checksum: [ 38 "sha512=ca5e0507aa2865be1361aadc585425ce9fb7c65239994811ea937da68d925b940723e8250e4e65733e65c65e6b0dc9122c4aa7a9656553b8d181b349cfe0d257" 39 ] 40}