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-faad" 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" "faad"] 21depends: ["ocaml" "ocamlfind"] 22depexts: [ 23 ["libfaad-dev"] {os-family = "debian"} 24 ["faad2"] {os = "macos" & os-distribution = "homebrew"} 25] 26bug-reports: "https://github.com/savonet/ocaml-faad/issues" 27dev-repo: "git+https://github.com/savonet/ocaml-faad.git" 28synopsis: 29 "Bindings for the faad library which provides functions for decoding AAC audio files" 30flags: light-uninstall 31url { 32 src: 33 "https://github.com/savonet/ocaml-faad/releases/download/0.3.3/ocaml-faad-0.3.3.tar.gz" 34 checksum: [ 35 "sha256=2373bf11b36fdf3e966a34cded2fa594bceb967dee880e1adb543b341c91c84c" 36 "md5=70b3bea8fc805255ff2a7f9aafe55d8c" 37 ] 38}