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] {os != "macos"}
7 [
8 "./configure"
9 "CFLAGS=-I/usr/local/include"
10 "LDFLAGS=-L/usr/local/lib"
11 "OCAMLFLAGS=-ccopt -I/usr/local/include -cclib -L/usr/local/lib"
12 "--prefix"
13 prefix
14 ] {os = "macos"}
15 [make]
16]
17install: [
18 [make "install"]
19]
20remove: ["ocamlfind" "remove" "opus"]
21depends: [
22 "ocaml"
23 "ocamlfind"
24 "ogg" {< "0.7.0"}
25]
26depexts: [
27 ["libavutil-dev" "libopus-dev"] {os-family = "debian"}
28 ["opus"] {os = "macos" & os-distribution = "homebrew"}
29]
30bug-reports: "https://github.com/savonet/ocaml-opus/issues"
31dev-repo: "git+https://github.com/savonet/ocaml-opus.git"
32synopsis:
33 "Bindings for the opus library to decode audio files in opus format"
34flags: light-uninstall
35url {
36 src:
37 "https://github.com/savonet/ocaml-opus/releases/download/0.1.1/ocaml-opus-0.1.1.tar.gz"
38 checksum: [
39 "sha256=ff7118cbc6f1ddc6b8f140fa2adde3b934b31cd1aadd1e1370e5e0bfd60ebd4e"
40 "md5=c58b1ff9859ce31b56f5cba9d22f91a2"
41 ]
42}