this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3authors: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"] 4homepage: "http://erratique.ch/software/mtime" 5doc: "http://erratique.ch/software/mtime" 6dev-repo: "git+http://erratique.ch/repos/mtime.git" 7bug-reports: "https://github.com/dbuenzli/mtime/issues" 8tags: [ "time" "monotonic" "system" "org:erratique" ] 9license: "ISC" 10depends: [ 11 "ocaml" {>= "4.01.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build} 15] 16depopts: [ "js_of_ocaml" ] 17conflicts: [ 18 "js_of_ocaml" {>= "3.4.0"} ] 19build: [[ 20 "ocaml" "pkg/pkg.ml" "build" 21 "--pinned" "%{pinned}%" 22 "--with-js_of_ocaml" "%{js_of_ocaml:installed}%" ]] 23synopsis: "Monotonic wall-clock time for OCaml" 24description: """ 25Mtime is an OCaml module to access monotonic wall-clock time. It 26allows to measure time spans without being subject to operating system 27calendar time adjustments. 28 29Mtime depends only on your platform system library. The optional 30JavaScript support depends on [js_of_ocaml][jsoo]. It is distributed 31under the ISC license. 32 33[jsoo]: http://ocsigen.org/js_of_ocaml/""" 34url { 35 src: "http://erratique.ch/software/mtime/releases/mtime-0.8.4.tbz" 36 checksum: [ 37 "sha256=b0a1eb1fb2d30e413ab24f5261e099881cadbac5af440f53f2544e3a9846b5a9" 38 "md5=6261cb1a621412b7195615c2dbce57f3" 39 ] 40}