this repo has no description
1opam-version: "2.0" 2maintainer: "andreashauptmann@t-online.de" 3authors: [ "andreashauptmann@t-online.de" ] 4license: "MIT" 5homepage: "https://github.com/fdopen/uwt" 6dev-repo: "git+https://github.com/fdopen/uwt.git" 7bug-reports: "https://github.com/fdopen/uwt/issues" 8tags: ["clib:libuv"] 9build: ["omake" "-j%{jobs}%" "lib" "BUILD_LIBUV=true" "UWT_BUILD_JOBS=%{jobs}%"] 10install: [ 11 ["omake" "opam-install" "PREFIX=%{prefix}%"] 12] 13remove: [ 14 ["rm" "-rf" "%{prefix}%/lib/uwt/uv"] 15 ["ocamlfind" "remove" "uwt"] 16 ["rm" "-rf" "%{prefix}%/doc/uwt"] 17] 18depends: [ 19 "ocaml" {>= "4.02.1" & < "4.12"} 20 "base-unix" 21 "base-bigarray" 22 "base-threads" 23 "base-bytes" 24 "conf-pkg-config" {build} 25 "ocamlfind" {build} 26 "cppo" {build & >= "1.3"} 27 "omake" {build} 28 "result" 29 "lwt" {>= "2.6.0"} 30] 31synopsis: "libuv bindings" 32description: """ 33uwt provides OCaml bindings for libuv. 34The main loop of libuv is integrated into lwt, 35the light-weight cooperative threads library.""" 36flags: light-uninstall 37url { 38 src: 39 "https://github.com/fdopen/uwt/releases/download/0.3.3/uwt-0.3.3.tar.gz" 40 checksum: [ 41 "sha256=9e653a9fc7a13c5435a58780ddf02ff15c8ff92f63f6ff4406b1d312e3060807" 42 "md5=549517d3e9bcf5533097e4c83f891e2c" 43 ] 44}