this repo has no description
1opam-version: "2.0"
2maintainer: "whitequark <whitequark@whitequark.org>"
3authors: [ "whitequark <whitequark@whitequark.org>" ]
4license: "LGPL-2.1-only"
5homepage: "https://github.com/whitequark/ocaml-inotify"
6doc: "http://whitequark.github.io/ocaml-inotify"
7bug-reports: "https://github.com/whitequark/ocaml-inotify/issues"
8dev-repo: "git+https://github.com/whitequark/ocaml-inotify.git"
9build: [
10 ["ocaml" "setup.ml" "-configure" "--%{lwt:enable}%-lwt" "--prefix" prefix]
11 ["ocaml" "setup.ml" "-build"]
12 [
13 "ocaml"
14 "setup.ml"
15 "-configure"
16 "--%{lwt:enable}%-lwt"
17 "--prefix"
18 prefix
19 "--enable-tests"
20 ] {with-test}
21 ["ocaml" "setup.ml" "-build"] {with-test}
22 ["ocaml" "setup.ml" "-test"] {with-test}
23]
24install: [
25 ["ocaml" "setup.ml" "-install"]
26]
27remove: [
28 ["ocamlfind" "remove" "inotify"]
29]
30depends: [
31 "ocaml" {< "5.0"}
32 "base-unix"
33 "base-bytes"
34 "ocamlfind" {build}
35 "fileutils" {with-test}
36 "ocamlbuild" {build}
37 "ounit" {with-test & >= "2.0.0"}
38]
39depopts: ["lwt"]
40conflicts: [
41 "lwt" {with-test & >= "5.0.0"}
42]
43available: [os = "linux"]
44synopsis: "Inotify bindings for ocaml."
45flags: light-uninstall
46url {
47 src: "https://github.com/whitequark/ocaml-inotify/archive/v2.2.tar.gz"
48 checksum: [
49 "sha256=52c0d67b1972f000e8e31f1511d77ea86ccbed9b0b494ab7226b7a5d20231336"
50 "md5=a62de155ec4a1d102bc07fc75a060e08"
51 ]
52}