this repo has no description
1opam-version: "2.0" 2synopsis: "Binding for the Secure, Reliable, Transport protocol library" 3description: """ 4Secure Reliable Transport (SRT) is an open source transport technology 5that optimizes streaming performance across unpredictable networks, such 6as the Internet. 7This package provides OCaml bindings to the C implementation library. 8""" 9maintainer: ["The Savonet Team <savonet-users@lists.sourceforge.net>"] 10authors: ["The Savonet Team <savonet-users@lists.sourceforge.net>"] 11license: "GPL-2.0-only" 12homepage: "https://github.com/savonet/ocaml-srt" 13bug-reports: "https://github.com/savonet/ocaml-srt/issues" 14depends: [ 15 "dune" {> "2.0"} 16 "dune-configurator" 17 "ctypes" 18 "posix-socket" 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "@install" 30 "@runtest" {with-test} 31 "@doc" {with-doc} 32 ] 33] 34dev-repo: "git+https://github.com/savonet/ocaml-srt.git" 35depexts: [ 36 ["srt-devel"] {os-distribution = "centos"} 37 ["srt-devel"] {os-distribution = "fedora"} 38 ["srt-devel"] {os-family = "suse" | os-family = "opensuse"} 39 ["libsrt-dev"] {os-family = "debian"} 40 ["srt"] {os = "macos" & os-distribution = "homebrew"} 41] 42url { 43 src: "https://github.com/savonet/ocaml-srt/archive/v0.1.1.tar.gz" 44 checksum: [ 45 "md5=5209317de47f1cfd4e201790ad2f295a" 46 "sha512=3216b8e2c84438da1fd600a5503436cc1e9a1f6675b6d3b91eb459055c482b0838803ab5bfa4366ee2a20249f17f2573bae16de1fa925efa6db557ed3f3cb910" 47 ] 48}