this repo has no description
1opam-version: "2.0" 2maintainer: "The Savonet Team <savonet-users@lists.sourceforge.net>" 3authors: "The Savonet Team <savonet-users@lists.sourceforge.net>" 4homepage: "https://github.com/savonet/ocaml-fdkaac" 5bug-reports: "https://github.com/savonet/ocaml-fdkaac/issues" 6license: "GPL-2.0-only" 7dev-repo: "git+https://github.com/savonet/ocaml-fdkaac.git" 8build: [ 9 ["./configure" "--prefix=%{prefix}%"] {os != "macos"} 10 ["./configure" "OCAMLFLAGS=-cclib -L/usr/local/lib" "--prefix=%{prefix}%"] 11 {os = "macos"} 12 [make] 13] 14install: [make "install"] 15remove: ["ocamlfind" "remove" "fdkaac"] 16depends: [ 17 "ocaml" 18 "ocamlfind" {build} 19] 20depexts: [ 21 ["fdk-aac-dev"] {os-distribution = "alpine"} 22 ["libfdk-aac"] {os-distribution = "arch"} 23 ["fdk-aac-devel"] {os-distribution = "centos"} 24 ["fdk-aac-devel"] {os-distribution = "fedora"} 25 ["fdk-aac-devel"] {os-family = "suse" | os-family = "opensuse"} 26 ["libfdk-aac-dev"] {os-family = "debian"} 27 ["fdk-aac"] {os = "macos" & os-distribution = "homebrew"} 28] 29synopsis: "Fraunhofer FDK AAC Codec Library" 30description: """ 31The FDK AAC Codec Library For Android contains an encoder implementation of the 32Advanced Audio Coding (AAC) audio codec.""" 33flags: light-uninstall 34url { 35 src: 36 "https://github.com/savonet/ocaml-fdkaac/releases/download/0.2.1/ocaml-fdkaac-0.2.1.tar.gz" 37 checksum: [ 38 "sha256=2310bc460f50d71c83871350d5c4e2897a9db1abc8ddb5cb63761d1ca5c9b855" 39 "md5=fff652fa282b4954d2f504ca1c2a70e9" 40 ] 41}