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 "ocplib_stuff" {>= "0.1"} 40 "ez_file" {>= "0.3"} 41 "ez_cmdliner" {>= "0.4.3"} 42 "autofonce_share" {= version} 43 "autofonce_patch" {= version} 44 "autofonce_m4" {= version} 45 "autofonce_core" {= version} 46 "autofonce_config" {= version} 47 "ANSITerminal" {>= "0.8"} 48 "ppx_inline_test" {with-test} 49 "ppx_expect" {with-test} 50 "odoc" {with-doc} 51 "ocamlformat" {with-test} 52] 53 54url { 55 src: "https://github.com/ocamlpro/autofonce/archive/v0.8.tar.gz" 56 checksum: [ "sha256=4838b340c1e99708d6690fdd8658fc8b6ac74e3c38c0c3f1bbf2a50e92e48c4a" ] 57}