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: "http://mqueue.forge.ocamlcore.org/" 6doc: "http://mqueue.forge.ocamlcore.org/doc/" 7dev-repo: "git+https://github.com/mwweissmann/ocaml-posix-mqueue.git" 8bug-reports: "https://github.com/mwweissmann/ocaml-posix-mqueue/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-mqueue"] 18] 19depends: [ 20 "ocaml" 21 "result" 22 "base-bytes" 23 "base-unix" 24 "posix-time" {>= "0.5.0"} 25 "ocamlfind" {>= "1.5"} 26 "ocamlbuild" {build} 27] 28available: os != "macos" 29synopsis: "POSIX message queues" 30description: """ 31The posix-mqueue library is a small OCaml library providing types and 32functions for using POSIX message queues. This library has been tested on 33Linux, but FreeBSD, QNX, Solaris etc. should work, too. Mac OS X does NOT 34provide POSIX message queues (OS X 10.10).""" 35flags: light-uninstall 36url { 37 src: 38 "https://github.com/mwweissmann/ocaml-posix-mqueue/archive/0.8.0.tar.gz" 39 checksum: [ 40 "sha256=1afa582f1093f8cd04f84571cc13118ffae5dd825cd27bf77d06ef54b06eaa94" 41 "md5=ceb57cb54fe0aa30cf92f1def8854d42" 42 ] 43}