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] 13install: [ 14 ["ocaml" "setup.ml" "-install"] 15] 16remove: [ 17 ["ocamlfind" "remove" "inotify"] 18] 19depends: [ 20 "ocaml" {< "5.0"} 21 "base-unix" 22 "base-bytes" 23 "ocamlfind" {build} 24 "fileutils" {with-test} 25 "ocamlbuild" {build} 26] 27depopts: ["lwt"] 28available: [os = "linux"] 29synopsis: "Inotify bindings for ocaml." 30flags: light-uninstall 31url { 32 src: "https://github.com/whitequark/ocaml-inotify/archive/v2.3.tar.gz" 33 checksum: [ 34 "sha256=5965cf74c2f3245260d8f22c6ef7d9a9a81a09d542cc651ca25c71fbd60f7f4e" 35 "md5=6a87be14f62e4417562a401bb448ed7b" 36 ] 37}