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" {>= "0.5.0"}
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.4.0.tar.gz"
36 checksum: [
37 "sha256=3a1aa6136bfe6d0d4a9c437cd5de38fb085f76a18e84c84b2d4c36d151c0a5b2"
38 "md5=162a48e881a7455db79939fa73f67a93"
39 ]
40}