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"
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.7.2.tar.gz"
39 checksum: [
40 "sha256=142e08858b7fbf30bb607988428743a2ac0c4767a997134d0c8f3050f987faf7"
41 "md5=5458623dbb9eafbab77eb5f1f7320021"
42 ]
43}