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-flac" 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] 20depends: [ 21 "ocaml" {>= "4.03"} 22 "ocamlfind" {build} 23 "ogg" {< "0.7.0"} 24 "conf-pkg-config" {build} 25 "conf-libflac" {build} 26] 27bug-reports: "https://github.com/savonet/ocaml-flac/issues" 28dev-repo: "git+https://github.com/savonet/ocaml-flac.git" 29synopsis: 30 "Interface for the Free Lossless Audio Codec otherwise known as FLAC" 31url { 32 src: 33 "https://github.com/savonet/ocaml-flac/releases/download/0.1.6/ocaml-flac-0.1.6.tar.gz" 34 checksum: [ 35 "md5=5441430e60f4edf84840a1914a90a279" 36 "sha512=109c5a70f9a315f5f459cafaef768f06a6bc44681851ccb914fb66ca93fa19b9bccdae3cedf5262583d46bef6f6bed8360671c72fbaa15cb957399a92c2e3f62" 37 ] 38}