this repo has no description
1opam-version: "2.0" 2maintainer: "Louis Roché <louis@louisroche.net>" 3authors: "Louis Roché <louis@louisroche.net>" 4homepage: "https://github.com/Khady/ocaml-junit" 5bug-reports: "https://github.com/Khady/ocaml-junit/issues" 6license: "MIT" 7dev-repo: "git+https://github.com/Khady/ocaml-junit.git" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 10 ["ocaml" "setup.ml" "-build"] 11 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 12 ["ocaml" "setup.ml" "-build"] {with-test} 13 ["ocaml" "setup.ml" "-test"] {with-test} 14 ["ocaml" "setup.ml" "-doc"] {with-doc} 15] 16install: ["ocaml" "setup.ml" "-install"] 17remove: ["ocamlfind" "remove" "junit"] 18depends: [ 19 "ocaml" {>= "4.02.1" & < "5.0"} 20 "ocamlbuild" {build} 21 "ocamlfind" {build} 22 "ptime" 23 "tyxml" {>= "4.0.0"} 24] 25synopsis: "Library to produce XML JUnit reports." 26description: "Library to produce XML JUnit reports." 27flags: light-uninstall 28url { 29 src: "https://github.com/Khady/ocaml-junit/archive/0.1.zip" 30 checksum: [ 31 "sha256=60cea2e351e723baa32edaf17c5173cf176a151d3e9c754cddc9cc3e3629cdc9" 32 "md5=b25790f915ed08bd87796b3d722e0fd0" 33 ] 34}