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-speex"
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" "speex"]
21depends: [
22 "ocaml"
23 "ocamlfind"
24 "ogg" {>= "0.5.0" & < "0.6.0"}
25]
26depexts: [
27 ["speex-dev"] {os-distribution = "alpine"}
28 ["speex-devel"] {os-distribution = "centos"}
29 ["speex-devel"] {os-distribution = "fedora"}
30 ["speex-devel"] {os-family = "suse" | os-family = "opensuse"}
31 ["libspeex-dev"] {os-family = "debian"}
32 ["speex"] {os = "macos" & os-distribution = "homebrew"}
33]
34bug-reports: "https://github.com/savonet/ocaml-speex/issues"
35dev-repo: "git+https://github.com/savonet/ocaml-speex.git"
36synopsis:
37 "Bindings for the speex library to decode audio files in speex format"
38flags: light-uninstall
39url {
40 src:
41 "https://github.com/savonet/ocaml-speex/releases/download/0.2.1/ocaml-speex-0.2.1.tar.gz"
42 checksum: [
43 "sha256=7cf69947d257be52f777c223a254effb37c33480ba1727519a60c74f045ef9b0"
44 "md5=68e3596edc35ce7c4fa010e44abc8770"
45 ]
46}