this repo has no description
1opam-version: "2.0"
2license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
3synopsis: "Ez_subst is a simple module to perform string substitutions"
4description: """\
5Ez_subst is a simple module to perform string substitutions, like
6${brace}, $(paren), $[bracket] or $alpha. It provides many options
7to configure the substitutions.
8"""
9authors: ["Fabrice LE FESSANT <fabrice.le_fessant@origin-labs.com>"]
10maintainer: ["Fabrice LE FESSANT <fabrice.le_fessant@origin-labs.com>"]
11homepage: "https://ocamlpro.github.io/ez_subst"
12doc: "https://ocamlpro.github.io/ez_subst/sphinx"
13bug-reports: "https://github.com/ocamlpro/ez_subst/issues"
14dev-repo: "git+https://github.com/ocamlpro/ez_subst.git"
15tags: "org:ocamlpro"
16build: [
17 ["dune" "subst"] {dev}
18 ["sh" "-c" "./scripts/before.sh build '%{name}%'"]
19 [
20 "dune"
21 "build"
22 "-p"
23 name
24 "-j"
25 jobs
26 "@install"
27 "@runtest" {with-test}
28 "@doc" {with-doc}
29 ]
30 ["sh" "-c" "./scripts/after.sh build '%{name}%'"]
31]
32install: [
33 ["sh" "-c" "./scripts/before.sh install '%{name}%'"]
34]
35depends: [
36 "ocaml" {>= "4.10.0"}
37 "dune" {>= "2.7.0"}
38 "ppx_inline_test" {with-test}
39 "ppx_expect" {with-test}
40 "odoc" {with-doc}
41 "ocamlformat" {with-test}
42]
43
44url {
45 src: "https://github.com/ocamlpro/ez_subst/archive/v0.2.1.tar.gz"
46 checksum: [ "sha256=5d56ac4754757bf279804211ad48d18947557f3c3624531be60cab1b50fb79d7" ]
47}