Codebase list ocaml-faad / run/821ae516-46d6-4e3c-bc2c-b13dadf0b9af/main
New upstream snapshot. Debian Janitor 1 year, 6 months ago
5 changed file(s) with 10 addition(s) and 11 deletion(s). Raw diff Collapse all Expand all
+0
-7
.gitignore less more
0 *~
1 _build
2 *.byte
3 *.native
4 _tests
5 .merlin
6 *.install
0 ocaml-faad (0.5.1+git20220522.1.95d7c39-1) UNRELEASED; urgency=low
1
2 * New upstream snapshot.
3
4 -- Debian Janitor <janitor@jelmer.uk> Sun, 13 Nov 2022 13:01:33 -0000
5
06 ocaml-faad (0.5.1-1) unstable; urgency=medium
17
28 * New upstream version 0.5.1
00 (lang dune 2.8)
1 (version 0.5.1)
1 (version 0.5.2)
22 (name faad)
33 (source (github savonet/ocaml-faad))
44 (license GPL-2.0)
00 # This file is generated by dune, edit dune-project instead
11 opam-version: "2.0"
2 version: "0.5.1"
2 version: "0.5.2"
33 synopsis:
44 "Bindings for the faad library which provides functions for decoding AAC audio files"
55 maintainer: ["Romain Beauxis <toots@rastageeks.org>"]
22 let () =
33 C.main ~name:"faad2-pkg-config" (fun c ->
44 let default : C.Pkg_config.package_conf =
5 { libs = ["-lfaad2"]; cflags = [] }
5 { libs = ["-lfaad"]; cflags = [] }
66 in
77 let conf =
88 match C.Pkg_config.get c with
1111 match
1212 C.Pkg_config.query_expr_err pc ~package:"faad2" ~expr:"faad2"
1313 with
14 | Error msg -> failwith msg
14 | Error _ -> default
1515 | Ok deps -> deps)
1616 in
1717 C.Flags.write_sexp "c_flags.sexp" conf.cflags;