this repo has no description
1opam-version: "2.0" 2maintainer: "whitequark <whitequark@whitequark.org>" 3authors: [ "whitequark <whitequark@whitequark.org>" ] 4license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 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 "ocamlbuild" {build} 36 "fileutils" {with-test} 37 "ounit" {with-test & >= "2.0.0"} 38] 39depopts: ["lwt"] 40conflicts: [ 41 "lwt" {with-test & >= "5.0.0"} 42] 43available: os = "linux" | os = "macos" 44synopsis: "Inotify bindings for ocaml." 45flags: light-uninstall 46url { 47 src: "https://github.com/whitequark/ocaml-inotify/archive/v2.1.tar.gz" 48 checksum: [ 49 "sha256=f874bb467542e3ae101bf0fc1fc829a04f938d9106cbc8a18cb89d7ece37e25f" 50 "md5=60b3070dec5c008b3fe69a562ea4e905" 51 ] 52}