this repo has no description
at main 1.3 kB view raw
1opam-version: "2.0" 2maintainer: "Rizo Isrof <rizo@odis.io>" 3authors: [ "Rizo Isrof <rizo@odis.io>" ] 4license: "MIT" 5homepage: "http://github.com/rizo/flow" 6dev-repo: "git+https://github.com/rizo/flow.git" 7bug-reports: "https://github.com/rizo/flow/issues" 8build: [ 9 ["oasis" "setup"] 10 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 11 ["ocaml" "setup.ml" "-build"] 12 ["oasis" "setup"] {with-test} 13 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 14 ["ocaml" "setup.ml" "-build"] {with-test} 15 ["ocaml" "setup.ml" "-test"] {with-test} 16] 17install: ["ocaml" "setup.ml" "-install"] 18remove: [ 19 ["ocamlfind" "remove" "io"] 20] 21depends: [ 22 "ocaml" 23 "base-unix" 24 "oasis" {build & >= "0.4"} 25 "ocamlfind" {build} 26 "ocamlbuild" {build} 27 "camlp4" 28] 29synopsis: "Simple, secure and composable abstraction for efficient component" 30description: """ 31communcation. 32This library implements flow-based programming primitives for data 33processing. An application can be viewed as a network of asynchronous 34processes, called nodes, communicating by means of streams of 35structured data chunks.""" 36flags: light-uninstall 37url { 38 src: "https://github.com/rizo/io/archive/0.2.0.zip" 39 checksum: [ 40 "sha256=2935b1671ab9f6c96f0d4ec48cb4fa9b76c8d9d992267332fc68d387322249e5" 41 "md5=c90742b1549b111094585e9a26e19823" 42 ] 43}