this repo has no description
1opam-version: "2.0"
2license: "GPL-3.0-only"
3synopsis: "A modern runner for GNU Autoconf Testsuites"
4description: """\
5autofonce is a modern runner for GNU Autoconf Testsuites:
6autofonce has a limited understanding of m4 macros that appear in testsuites
7written for the GNU Autoconf testsuites, and can run such tests in a modern
8way.
9"""
10authors: ["Fabrice Le Fessant <fabrice.le_fessant@ocamlpro.com>"]
11maintainer: ["Fabrice Le Fessant <fabrice.le_fessant@ocamlpro.com>"]
12homepage: "https://ocamlpro.github.io/autofonce"
13doc: "https://ocamlpro.github.io/autofonce/sphinx"
14bug-reports: "https://github.com/ocamlpro/autofonce/issues"
15dev-repo: "git+https://github.com/ocamlpro/autofonce.git"
16tags: "org:ocamlpro"
17build: [
18 ["dune" "subst"] {dev}
19 ["sh" "-c" "./scripts/before.sh build '%{name}%'"]
20 [
21 "dune"
22 "build"
23 "-p"
24 name
25 "-j"
26 jobs
27 "@install"
28 "@runtest" {with-test}
29 "@doc" {with-doc}
30 ]
31 ["sh" "-c" "./scripts/after.sh build '%{name}%'"]
32]
33install: [
34 ["sh" "-c" "./scripts/before.sh install '%{name}%'"]
35]
36depends: [
37 "ocaml" {>= "4.10.0"}
38 "dune" {>= "2.7.0"}
39 "autofonce_lib" {= version}
40 "ppx_inline_test" {with-test}
41 "ppx_expect" {with-test}
42 "odoc" {with-doc}
43 "ocamlformat" {with-test}
44]
45
46url {
47 src: "https://github.com/ocamlpro/autofonce/archive/v0.8.tar.gz"
48 checksum: [ "sha256=4838b340c1e99708d6690fdd8658fc8b6ac74e3c38c0c3f1bbf2a50e92e48c4a" ]
49}