File tree Expand file tree Collapse file tree 3 files changed +46
-1
lines changed
conf-mingw-w64-sdl2-ttf-i686/conf-mingw-w64-sdl2-ttf-i686.1
conf-mingw-w64-sdl2-ttf-x86_64/conf-mingw-w64-sdl2-ttf-x86_64.1
conf-sdl2-ttf/conf-sdl2-ttf.1 Expand file tree Collapse file tree 3 files changed +46
-1
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Provides sdl2-ttf for i686 mingw-w64 (32-bit x86)"
3+ description: "Ensure that the i686 version of sdl2-ttf for the mingw-w64 project is available"
4+ maintainer: "https://github.com/ocaml/opam-repository/issues"
5+ authors: "Sam Lantinga"
6+ license: "Zlib"
7+ homepage: "http://www.libsdl.org/projects/SDL_ttf/"
8+ bug-reports: "https://github.com/ocaml/opam-repository/issues"
9+ flags: conf
10+ available: os = "win32"
11+ build: ["pkgconf" "--personality=i686-w64-mingw32" "SDL2_ttf"]
12+ depends: [
13+ "conf-pkg-config" {build}
14+ "conf-mingw-w64-gcc-i686" {build}
15+ ]
16+ depexts: [
17+ ["mingw64-i686-SDL2_ttf"] {os = "win32" & os-distribution = "cygwin"}
18+ ["mingw-w64-i686-SDL2_ttf"] {os = "win32" & os-distribution = "msys2"}
19+ ]
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Provides sdl2-ttf for x86_64 mingw-w64 (64-bit x86_64)"
3+ description: "Ensure that the x86_64 version of sdl2-ttf for the mingw-w64 project is available"
4+ maintainer: "https://github.com/ocaml/opam-repository/issues"
5+ authors: "Sam Lantinga"
6+ license: "Zlib"
7+ homepage: "http://www.libsdl.org/projects/SDL_ttf/"
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" "SDL2_ttf"]
12+ depends: [
13+ "conf-pkg-config" {build}
14+ "conf-mingw-w64-gcc-x86_64" {build}
15+ ]
16+ depexts: [
17+ ["mingw64-x86_64-SDL2_ttf"] {os = "win32" & os-distribution = "cygwin"}
18+ ["mingw-w64-x86_64-SDL2_ttf"] {os = "win32" & os-distribution = "msys2"}
19+ ]
Original file line number Diff line number Diff line change @@ -2,9 +2,15 @@ opam-version: "2.0"
22maintainer: "https://github.com/ocaml/opam-repository/issues"
33homepage: "http://www.libsdl.org/projects/SDL_ttf/"
44license: "Zlib"
5- build: [["pkg-config" "SDL2_ttf"]]
5+ build: [
6+ ["pkgconf" "--personality=i686-w64-mingw32" "SDL2_ttf"] {os = "win32" & os-distribution = "cygwin" & host-arch-x86_32:installed}
7+ ["pkgconf" "--personality=x86_64-w64-mingw32" "SDL2_ttf"] {os = "win32" & os-distribution = "cygwin" & host-arch-x86_64:installed}
8+ ["pkg-config" "SDL2_ttf"] {os != "win32" | os-distribution != "cygwin"}
9+ ]
610depends: [
711 "conf-pkg-config" {build}
12+ ("host-arch-x86_32" {os = "win32" & os-distribution != "cygwinports"} & "conf-mingw-w64-sdl2-ttf-i686" {os = "win32" & os-distribution != "cygwinports"} |
13+ "host-arch-x86_64" {os = "win32" & os-distribution != "cygwinports"} & "conf-mingw-w64-sdl2-ttf-x86_64" {os = "win32" & os-distribution != "cygwinports"})
814]
915depexts: [
1016 ["sdl2_ttf-dev"] {os-family = "alpine"}
@@ -22,6 +28,7 @@ depexts: [
2228 ["sdl2-ttf"] {os = "openbsd"}
2329 ["SDL2_ttf"] {os = "netbsd"}
2430 ["SDL2_ttf"] {os = "nixos"}
31+ ["libSDL2_ttf-devel"] {os = "cygwin"}
2532]
2633synopsis: "Virtual package relying on a sdl2-ttf system installation"
2734description:
You can’t perform that action at this time.
0 commit comments