this repo has no description
1opam-version: "2.0" 2authors: "John Else" 3homepage: "https://github.com/johnelse/ocaml-osc" 4bug-reports: "https://github.com/johnelse/ocaml-osc/issues" 5dev-repo: "git+https://github.com/johnelse/ocaml-osc" 6maintainer: "john.else@gmail.com" 7build: [ 8 [ 9 "./configure" 10 "--prefix" 11 prefix 12 "--%{lwt:enable}%-lwt" 13 "--%{base-unix:enable}%-unix" 14 "--enable-docs" 15 ] 16 [make "build"] 17 ["./configure" "--enable-tests"] {with-test} 18 [make "test"] {with-test} 19] 20install: [ 21 [make "PREFIX=%{prefix}%" "install"] 22] 23remove: [ 24 ["ocamlfind" "remove" "osc"] 25] 26depends: [ 27 "ocaml" {>= "4.02.1"} 28 "oasis" {build} 29 "ocamlbuild" {build} 30 "ocamlfind" {build} 31 "ocplib-endian" 32 "rresult" {< "0.7.0"} 33 "ounit" {with-test} 34] 35depopts: [ 36 "base-unix" 37 "lwt" 38] 39conflicts: [ 40 "lwt" {< "2.7.0"} 41 "lwt" {with-test & >= "5.0.0"} 42] 43synopsis: "Pure OCaml OpenSoundControl client and server implementation" 44flags: light-uninstall 45url { 46 src: "https://github.com/johnelse/ocaml-osc/archive/osc.0.1.4.tar.gz" 47 checksum: [ 48 "sha256=3831e5926214606cdf94c933905cfa9f384a2065700182c81eac4da95d33d84e" 49 "md5=b21799c49c24e07341ff208f278f6a59" 50 ] 51}