this repo has no description
1opam-version: "2.0" 2maintainer: "unixjunkie@sdf.org" 3authors: ["Francois Berenger"] 4homepage: "https://github.com/UnixJunkie/parany" 5bug-reports: "https://github.com/UnixJunkie/parany/issues" 6dev-repo: "git+https://github.com/UnixJunkie/parany.git" 7license: "LGPL-2.0-or-later" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 10 ["ocaml" "setup.ml" "-build"] 11] 12install: ["ocaml" "setup.ml" "-install"] 13remove: ["ocamlfind" "remove" "parany"] 14depends: [ 15 "ocaml" {>= "4.03.0"} 16 "ocamlfind" 17 "ocamlbuild" {build} 18 "base-unix" 19 "ocamlnet" 20] 21synopsis: 22 "Parallelize any computation over independent items, even if there is an infinite number of them." 23flags: light-uninstall 24url { 25 src: "https://github.com/UnixJunkie/parany/archive/v2.0.0.tar.gz" 26 checksum: [ 27 "sha256=023d78a3ed83b6d578c23b1e15dde8dd13921af99e22dbc2d24e61d48134cc76" 28 "md5=9153148dd2d5960217670f637234d059" 29 ] 30}