this repo has no description
1opam-version: "2.0"
2synopsis:
3 "Simple implementation of 'expect' to help building unitary testing of interactive program"
4description: """
5You can match the question using a regular expression or a timeout.
6
7See the Expect manual for more information:
8http://expect.nist.gov/
9"""
10maintainer: ["Sylvain Le Gall <sylvain+ocaml@le-gall.net>"]
11authors: ["Sylvain Le Gall"]
12license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
13homepage: "https://github.com/gildor478/ocaml-expect"
14doc: "https://gildor478.github.io/ocaml-expect/"
15bug-reports: "https://github.com/gildor478/ocaml-expect/issues"
16depends: [
17 "dune" {>= "2.9"}
18 "base-unix"
19 "re" {>= "1.12.0"}
20 "batteries" {>= "3.8.0"}
21 "ounit2" {>= "2.0.0" & with-test}
22 "ocaml" {>= "4.14"}
23 "odoc" {with-doc}
24]
25build: [
26 ["dune" "subst"] {dev}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "--promote-install-files=false"
35 "@install"
36 "@runtest" {with-test}
37 "@doc" {with-doc}
38 ]
39 ["dune" "install" "-p" name "--create-install-files" name]
40]
41dev-repo: "git+https://github.com/gildor478/ocaml-expect.git"
42url {
43 src:
44 "https://github.com/gildor478/ocaml-expect/releases/download/v0.1.0/expect-0.1.0.tbz"
45 checksum: [
46 "sha256=25465f78cff8ba44e85cafdff053b9a30320269c2bbb851d2b34d855d6464cc1"
47 "sha512=4f4567812afb9ef611749b5256550c05b1ec03c3910e9a3336ec4dec54156b4596acb27143c758e1ebd035398412cd21a0b90c7c4559c0ad57e91355d24a273a"
48 ]
49}
50x-commit-hash: "53b42ca539737872add71a7213d543b904e35f6d"