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.03.0"}
12 "ocamlfind" {build}
13 "ocamlbuild" {build & != "0.9.0"}
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 has platform independent support for monotonic wall-clock time
26in pure OCaml. This time increases monotonically and is not subject to
27operating system calendar time adjustments. The library has types to
28represent nanosecond precision timestamps and time spans.
29
30The additional Mtime_clock library provide access to a system
31monotonic clock.
32
33Mtime has a no dependency. Mtime_clock depends on your system library.
34The optional JavaScript support depends on [js_of_ocaml][jsoo]. Mtime
35and its libraries are distributed under the ISC license.
36
37[jsoo]: http://ocsigen.org/js_of_ocaml/"""
38url {
39 src: "http://erratique.ch/software/mtime/releases/mtime-1.0.0.tbz"
40 checksum: [
41 "sha256=dd9e2eaaa2e275e832d9acf3c84654eb02e74d449705f7d46739e2bac77657ac"
42 "md5=3e3f2fad1a3c4d8bd6d5006b1a6a6d99"
43 ]
44}