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 ["./configure" "--prefix" prefix] 7 [make] 8] 9install: [ 10 [make "install"] 11] 12remove: ["ocamlfind" "remove" "opus"] 13depends: [ 14 "ocaml" 15 "ocamlfind" {build} 16 "ogg" {< "0.7.0"} 17] 18depexts: [ 19 ["opus-dev"] {os-distribution = "alpine"} 20 ["opus"] {os-distribution = "arch"} 21 ["libopus-dev"] {os-family = "debian"} 22 ["opus-devel"] {os-distribution = "centos"} 23 ["opus-devel"] {os-distribution = "fedora"} 24 ["opus-devel"] {os-family = "suse" | os-family = "opensuse"} 25 ["libopus"] {os-distribution = "nixos"} 26 ["opus"] {os = "macos" & os-distribution = "homebrew"} 27] 28bug-reports: "https://github.com/savonet/ocaml-opus/issues" 29dev-repo: "git+https://github.com/savonet/ocaml-opus.git" 30synopsis: 31 "Bindings for the opus library to decode audio files in opus format" 32flags: light-uninstall 33url { 34 src: 35 "https://github.com/savonet/ocaml-opus/releases/download/0.1.2/ocaml-opus-0.1.2.tar.gz" 36 checksum: [ 37 "sha256=483f5e3d0e505af25c67e0a7885b70fe94f95952427b4c1266939e22fa1673bb" 38 "md5=dd96c90b18ac838e3680dd5127dc67c9" 39 ] 40}