this repo has no description
1opam-version: "2.0" 2maintainer: "Lidcore <it@lidcore.com>" 3authors: [ "Romain Beauxis" ] 4license: "ISC" 5homepage: "https://github.com/lidcore/raygun4ocaml" 6dev-repo: "git+https://github.com/lidcore/raygun4ocaml.git" 7bug-reports: "https://github.com/lidcore/raygun4ocaml/issues" 8build: [ 9 [ 10 "ocaml" 11 "setup.ml" 12 "-configure" 13 "--prefix" 14 prefix 15 "--%{lwt+cohttp:enable}%-lwt" 16 ] 17 ["ocaml" "setup.ml" "-build"] 18 [ 19 "ocaml" 20 "setup.ml" 21 "-configure" 22 "--enable-tests" 23 "--%{lwt+cohttp:enable}%-lwt" 24 ] {with-test} 25 ["ocaml" "setup.ml" "-build"] {with-test} 26 ["ocaml" "setup.ml" "-test"] {with-test} 27] 28install: ["ocaml" "setup.ml" "-install"] 29remove: [ 30 ["ocamlfind" "remove" "raygun"] 31] 32depends: [ 33 "ocaml" {>= "4.02.0"} 34 "ISO8601" 35 "atdgen" {>= "1.5.0" & < "1.13.0"} 36 "base-unix" 37 "ocamlfind" {build} 38 "ocamlbuild" {build} 39] 40depopts: [ 41 "cohttp" 42 "lwt" 43] 44synopsis: "Client for the Raygun error reporting API" 45description: """ 46Track errors and crashes in real-time in your OCaml programs using the 47Raygun API.""" 48flags: light-uninstall 49url { 50 src: 51 "https://github.com/lidcore/raygun4ocaml/releases/download/0.1.0/raygun4ocaml-0.1.0.tar.gz" 52 checksum: [ 53 "sha256=76cd257128c2214bcb91322928ea669be0dc3e136ff93c0f05a3a51e8eb065ad" 54 "md5=9358e9430d5db434fff453dc7306c20b" 55 ] 56}