this repo has no description
1opam-version: "2.0" 2maintainer: "https://github.com/ocaml/opam-repository/issues" 3authors: [ "Sylvain Le Gall" ] 4homepage: "https://github.com/gildor478/ocaml-expect" 5bug-reports: "https://github.com/gildor478/ocaml-expect/issues" 6dev-repo: "git+https://github.com/gildor478/ocaml-expect.git" 7build: [ 8 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 9 ["ocaml" "setup.ml" "-build"] 10] 11remove: [["ocamlfind" "remove" "expect"]] 12depends: [ 13 "ocaml" {< "5.0.0"} 14 "ocamlfind" 15 "batteries" 16 "ounit" 17 "pcre" 18 "ocamlbuild" {build} 19 "base-bytes" 20] 21install: ["ocaml" "setup.ml" "-install"] 22synopsis: 23 "Simple implementation of \"expect\" to help building unitary testing of interactive program" 24description: """ 25You can match the question using a regular expression or a timeout. 26 27See the Expect manual for more information: 28http://expect.nist.gov/""" 29flags: light-uninstall 30url { 31 src: 32 "https://download.ocamlcore.org/ocaml-expect/ocaml-expect/0.0.6/ocaml-expect-0.0.6.tar.gz" 33 checksum: [ 34 "sha256=60629fb2498cae0a7434f191ae47055ddd0cf9f02189ae4afe387bd2d2db1825" 35 "md5=894a7d6ded68d9d10a18ab7b79a8e961" 36 ] 37}