|
| 1 | +opam-version: "2.0" |
| 2 | +license: "GPL-3.0-only" |
| 3 | +synopsis: "A modern runner for GNU Autoconf Testsuites" |
| 4 | +description: """\ |
| 5 | +autofonce is a modern runner for GNU Autoconf Testsuites: |
| 6 | +autofonce has a limited understanding of m4 macros that appear in testsuites |
| 7 | +written for the GNU Autoconf testsuites, and can run such tests in a modern |
| 8 | +way. |
| 9 | +""" |
| 10 | +authors: ["Fabrice Le Fessant < [email protected]>"] |
| 11 | +maintainer: ["Fabrice Le Fessant < [email protected]>"] |
| 12 | +homepage: "https://ocamlpro.github.io/autofonce" |
| 13 | +doc: "https://ocamlpro.github.io/autofonce/sphinx" |
| 14 | +bug-reports: "https://github.com/ocamlpro/autofonce/issues" |
| 15 | +dev-repo: "git+https://github.com/ocamlpro/autofonce.git" |
| 16 | +tags: "org:ocamlpro" |
| 17 | +build: [ |
| 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 | +] |
| 33 | +install: [ |
| 34 | + ["sh" "-c" "./scripts/before.sh install '%{name}%'"] |
| 35 | +] |
| 36 | +depends: [ |
| 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 | + |
| 54 | +url { |
| 55 | + src: "https://github.com/ocamlpro/autofonce/archive/v0.8.tar.gz" |
| 56 | + checksum: [ "sha256=4838b340c1e99708d6690fdd8658fc8b6ac74e3c38c0c3f1bbf2a50e92e48c4a" ] |
| 57 | +} |
0 commit comments