File tree Expand file tree Collapse file tree 3 files changed +47
-1
lines changed
conf-mingw-w64-ao-i686/conf-mingw-w64-ao-i686.1
conf-mingw-w64-ao-x86_64/conf-mingw-w64-ao-x86_64.1 Expand file tree Collapse file tree 3 files changed +47
-1
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,17 @@ homepage: "https://www.xiph.org/ao/"
44bug-reports: "https://github.com/ocaml/opam-repository/issues"
55authors: "libao dev team"
66license: "GPL-2.0-only"
7- build: ["pkg-config" "--exists" "ao"]
7+ build: [
8+ ["pkgconf" {os = "win32" & os-distribution = "cygwin"}
9+ "--personality=i686-w64-mingw32" {os = "win32" & os-distribution = "cygwin" & host-arch-x86_32:installed}
10+ "--personality=x86_64-w64-mingw32" {os = "win32" & os-distribution = "cygwin" & host-arch-x86_64:installed}
11+ "pkg-config" {os != "win32" | os-distribution != "cygwin"}
12+ "--print-errors" "--exists" "ao"]
13+ ]
814depends: [
915 "conf-pkg-config" {build}
16+ ("host-arch-x86_32" {os = "win32" & os-distribution != "cygwinports"} & "conf-mingw-w64-ao-i686" {os = "win32" & os-distribution != "cygwinports"} |
17+ "host-arch-x86_64" {os = "win32" & os-distribution != "cygwinports"} & "conf-mingw-w64-ao-x86_64" {os = "win32" & os-distribution != "cygwinports"})
1018]
1119depexts: [
1220 ["libao-devel"] {os-distribution = "centos" | os-family = "fedora" | os-family = "suse" | os-family = "opensuse"}
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "libao for i686 mingw-w64 (32-bit x86)"
3+ description: "Ensures the i686 version of libao for the mingw-w64 project is available"
4+ maintainer: "https://github.com/ocaml/opam-repository/issues"
5+ authors: "libao dev team"
6+ license: "GPL-2.0-only"
7+ homepage: "https://www.xiph.org/ao/"
8+ bug-reports: "https://github.com/ocaml/opam-repository/issues"
9+ flags: conf
10+ available: os = "win32"
11+ build: ["pkgconf" "--personality=i686-w64-mingw32" "ao"]
12+ depends: [
13+ "conf-pkg-config" {build}
14+ "conf-mingw-w64-gcc-i686" {build}
15+ ]
16+ depexts: [
17+ ["mingw64-i686-libao"] {os = "win32" & os-distribution = "cygwin"}
18+ ["mingw-w64-i686-libao"] {os = "win32" & os-distribution = "msys2"}
19+ ]
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "libao for x86_64 mingw-w64 (64-bit x86_64)"
3+ description: "Ensures the x86_64 version of libao for the mingw-w64 project is available"
4+ maintainer: "https://github.com/ocaml/opam-repository/issues"
5+ authors: "libao dev team"
6+ license: "GPL-2.0-only"
7+ homepage: "https://www.xiph.org/ao/"
8+ bug-reports: "https://github.com/ocaml/opam-repository/issues"
9+ flags: conf
10+ available: os = "win32"
11+ build: ["pkgconf" "--personality=x86_64-w64-mingw32" "ao"]
12+ depends: [
13+ "conf-pkg-config" {build}
14+ "conf-mingw-w64-gcc-x86_64" {build}
15+ ]
16+ depexts: [
17+ ["mingw64-x86_64-libao"] {os = "win32" & os-distribution = "cygwin"}
18+ ["mingw-w64-x86_64-libao"] {os = "win32" & os-distribution = "msys2"}
19+ ]
You can’t perform that action at this time.
0 commit comments