this repo has no description
1opam-version: "2.0" 2maintainer: "Romain Beauxis <toots@rastageeks.org>" 3authors: "The Savonet Team <savonet-users@lists.sourceforge.net>" 4homepage: "https://github.com/savonet/ocaml-opus" 5build: [ 6 ["./bootstrap"] {dev} 7 ["./configure" "--prefix" prefix] 8 [make "clean"] {dev} 9 [make] 10] 11install: [ 12 [make "install"] 13] 14depends: [ 15 "ocaml" 16 "ocamlfind" {build} 17 "ogg" {< "0.7.0"} 18] 19depexts: [ 20 ["opus-dev"] {os-distribution = "alpine"} 21 ["opus"] {os-distribution = "arch"} 22 ["libopus-dev"] {os-family = "debian"} 23 ["opus-devel"] {os-distribution = "centos"} 24 ["opus-devel"] {os-distribution = "fedora"} 25 ["libopus-devel"] {os-family = "suse" | os-family = "opensuse"} 26 ["libopus"] {os-distribution = "nixos"} 27 ["opus"] {os = "macos" & os-distribution = "homebrew"} 28] 29bug-reports: "https://github.com/savonet/ocaml-opus/issues" 30dev-repo: "git+https://github.com/savonet/ocaml-opus.git" 31synopsis: 32 "Bindings for the opus library to decode audio files in opus format" 33url { 34 src: 35 "https://github.com/savonet/ocaml-opus/releases/download/0.1.3/ocaml-opus-0.1.3.tar.gz" 36 checksum: [ 37 "md5=b92bbb8130da99d1a57d52682754c385" 38 "sha512=6f3ce5de1366e8f23e5d43f77806eb6dec9689d3c7e0a4c55776027c10695e7e792147c2ac44a2618d6f058af1660f3e85493ef99369bcfadf1a716426d37138" 39 ] 40}