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" & < "0.7.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.3.0/ocaml-speex-0.3.0.tar.gz" 36 checksum: [ 37 "md5=dfc41813699da113c89dc02c527a37e9" 38 "sha512=5b125b3fda8b710e0c03ba9dd1a964487aeaee16814b16975cc18981dabcf43e6c3c0eee2cd590f6a0feb5f08d662f3ebcd23b18d812c4aa0de5c02fdd4deb81" 39 ] 40}