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-semaphore"
6doc: "http://posix-semaphore.forge.ocamlcore.org/doc/"
7dev-repo: "git+https://github.com/mwweissmann/ocaml-posix-semaphore.git"
8bug-reports: "https://github.com/mwweissmann/ocaml-posix-semaphore/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-semaphore"]
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 semaphore"
29description: """
30The POSIX sempahore library provides access to POSIX named and unnamed
31semaphores and the functions to work with them."""
32flags: light-uninstall
33url {
34 src:
35 "https://github.com/mwweissmann/ocaml-posix-semaphore/archive/0.5.0.tar.gz"
36 checksum: [
37 "sha256=54bb9eef95e27d55877406cf467c5cee2ea8bad00fd5454773ddaa9419c24550"
38 "md5=30ac98c5b8ab1efd73a0533eec7b9b9c"
39 ]
40}