this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add Mingw support to conf-sdl2

+60 -2
+20
packages/conf-mingw-w64-sdl2-i686/conf-mingw-w64-sdl2-i686.1/opam
··· 1 + opam-version: "2.0" 2 + authors: ["Sam Lantinga"] 3 + homepage: "http://libsdl.org/" 4 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 5 + license: "Zlib" 6 + flags: conf 7 + available: os = "win32" 8 + build: ["pkgconf" "--personality=i686-w64-mingw32" "sdl2"] 9 + depends: [ 10 + "conf-pkg-config" {build} 11 + "conf-mingw-w64-gcc-i686" {build} 12 + ] 13 + synopsis: "sdl2 for i686 mingw-w64" 14 + description: 15 + "Ensure the i686 version of sdl2 for the mingw-w64 project is available" 16 + maintainer: "David Allsopp <david@tarides.com>" 17 + depexts: [ 18 + ["mingw64-i686-SDL2"] {os = "win32" & os-distribution = "cygwin"} 19 + ["mingw-w64-i686-SDL2"] {os = "win32" & os-distribution = "msys2"} 20 + ]
+20
packages/conf-mingw-w64-sdl2-x86_64/conf-mingw-w64-sdl2-x86_64.1/opam
··· 1 + opam-version: "2.0" 2 + authors: ["Sam Lantinga"] 3 + homepage: "http://libsdl.org/" 4 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 5 + license: "Zlib" 6 + flags: conf 7 + available: os = "win32" 8 + build: ["pkgconf" "--personality=x86_64-w64-mingw32" "sdl2"] 9 + depends: [ 10 + "conf-pkg-config" {build} 11 + "conf-mingw-w64-gcc-x86_64" {build} 12 + ] 13 + synopsis: "sdl2 for x86_64 mingw-w64" 14 + description: 15 + "Ensure the x86_64 version of sdl2 for the mingw-w64 project is available" 16 + maintainer: "David Allsopp <david@tarides.com>" 17 + depexts: [ 18 + ["mingw64-x86_64-SDL2"] {os = "win32" & os-distribution = "cygwin"} 19 + ["mingw-w64-x86_64-SDL2"] {os = "win32" & os-distribution = "msys2"} 20 + ]
+20 -2
packages/conf-sdl2/conf-sdl2.1/opam
··· 4 4 homepage: "http://libsdl.org/" 5 5 bug-reports: "https://github.com/ocaml/opam-repository/issues" 6 6 license: "Zlib" 7 - build: [["pkg-config" "sdl2"]] 7 + build: [ 8 + "pkgconf" {os = "win32" & os-distribution != "cygwinports"} 9 + "--personality=i686-w64-mingw32" 10 + {os = "win32" & os-distribution != "cygwinports" & 11 + host-arch-x86_32:installed} 12 + "--personality=x86_64-w64-mingw32" 13 + {os = "win32" & os-distribution != "cygwinports" & 14 + host-arch-x86_64:installed} 15 + "pkg-config" {os != "win32" | os-distribution != "cygwin"} 16 + "sdl2" 17 + ] 8 18 depexts: [ 9 19 ["sdl2-dev"] {os-distribution = "alpine"} 10 20 ["sdl2"] {os-distribution = "arch"} ··· 25 35 synopsis: "Virtual package relying on a SDL2 system installation" 26 36 description: 27 37 "This package can only install if libSDL2 is installed on the system." 28 - depends: ["conf-pkg-config" {build}] 38 + depends: [ 39 + "conf-pkg-config" {build} 40 + ("host-arch-x86_32" {os = "win32" & os-distribution != "cygwinports"} & 41 + "conf-mingw-w64-sdl2-i686" 42 + {os = "win32" & os-distribution != "cygwinports"} | 43 + "host-arch-x86_64" {os = "win32" & os-distribution != "cygwinports"} & 44 + "conf-mingw-w64-sdl2-x86_64" 45 + {os = "win32" & os-distribution != "cygwinports"}) 46 + ] 29 47 flags: conf