this repo has no description
1opam-version: "2.0" 2maintainer: "Markus W. Weissmann <markus.weissmann@in.tum.de>" 3authors: [ "Markus W. Weissmann <markus.weissmann@in.tum.de>" ] 4license: "MIT" 5homepage: "https://github.com/mwweissmann/ocaml-posix-clock" 6doc: "http://posix-clock.forge.ocamlcore.org/doc/" 7dev-repo: "git+https://github.com/mwweissmann/ocaml-posix-clock.git" 8bug-reports: "https://github.com/mwweissmann/ocaml-posix-clock/issues" 9tags: [ "clib:rt" ] 10build: [ 11 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 12 ["ocaml" "setup.ml" "-build"] 13 ["ocaml" "setup.ml" "-doc"] {with-doc} 14] 15install: ["ocaml" "setup.ml" "-install"] 16remove: [ 17 ["ocamlfind" "remove" "posix-clock"] 18] 19depends: [ 20 "ocaml" 21 "result" 22 "base-unix" 23 "posix-time" 24 "ocamlfind" {>= "1.5"} 25 "ocamlbuild" {build} 26] 27available: os != "macos" 28synopsis: "POSIX clock" 29description: """ 30The POSIX clock library provides access to POSIX clocks to retrieve the 31current time, sleep on or change it.""" 32flags: light-uninstall 33url { 34 src: 35 "https://github.com/mwweissmann/ocaml-posix-clock/archive/0.3.0.tar.gz" 36 checksum: [ 37 "sha256=8e211ab96aea40749f6fc1c827e19be570675eba83abea1cd22aa6418cb9a89a" 38 "md5=1cab0c2e98bee8815f6547b9aa5f57d1" 39 ] 40}