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" 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.3.0.tar.gz" 36 checksum: [ 37 "sha256=c67c9d8f84f8b34aa14c254f020f1a7fb7edd860a7f8a4b5750f2e700c8895e6" 38 "md5=3e48f7d4f0585ea1e09e876372ef2e68" 39 ] 40}