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 ["./bootstrap"] {dev}
7 ["./configure" "--prefix" prefix] {os != "macos"}
8 [
9 "./configure"
10 "CFLAGS=-I/usr/local/include"
11 "LDFLAGS=-L/usr/local/lib"
12 "OCAMLFLAGS=-ccopt -I/usr/local/include -cclib -L/usr/local/lib"
13 "--prefix"
14 prefix
15 ] {os = "macos"}
16 [make "clean"] {dev}
17 [make]
18]
19install: [
20 [make "install"]
21]
22depends: [
23 "ocaml"
24 "ocamlfind" {build}
25 "ogg" {< "0.6.0"}
26 "conf-libspeex" {build}
27 "conf-pkg-config" {build}
28]
29bug-reports: "https://github.com/savonet/ocaml-speex/issues"
30dev-repo: "git+https://github.com/savonet/ocaml-speex.git"
31synopsis:
32 "Bindings for the speex library to decode audio files in speex format"
33url {
34 src:
35 "https://github.com/savonet/ocaml-speex/releases/download/v0.2.2/ocaml-speex-0.2.2.tar.gz"
36 checksum: [
37 "md5=bf53a53741452014a7721b5ed8907dac"
38 "sha512=6a7e28f474347dafae7598fd3643fd26cac0d048a5b5072b5924b40a736a2dfc76b55ea036729117d5dc65e8dc4a04b689d28d826c37a7c63aa7419800537270"
39 ]
40}