this repo has no description
0
fork

Configure Feed

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

libcurl for mingw

+46 -1
+8 -1
packages/conf-libcurl/conf-libcurl.2/opam
··· 3 3 authors: ["Daniel Stenberg"] 4 4 homepage: "http://curl.haxx.se/" 5 5 license: "BSD-like" 6 - build: ["curl-config" "--libs"] 6 + build: [ 7 + ["sh" "-exc" "curl-config --libs"] {os = "win32" & os-distribution != "cygwinports"} 8 + ["curl-config" "--libs"] {os != "win32" | os-distribution = "cygwinports"} 9 + ] 7 10 depexts: [ 8 11 ["libcurl4-gnutls-dev"] {os-family = "debian"} 9 12 ["libcurl4-gnutls-dev"] {os-family = "ubuntu"} ··· 19 22 ["curl"] {os-distribution = "homebrew" & os = "macos"} 20 23 ["curl"] {os-distribution = "macports" & os = "macos"} 21 24 ["curl"] {os = "freebsd"} 25 + ] 26 + depends: [ 27 + ("host-arch-x86_32" {os = "win32" & os-distribution != "cygwinports"} & "conf-mingw-w64-curl-i686" {os = "win32" & os-distribution != "cygwinports"} | 28 + "host-arch-x86_64" {os = "win32" & os-distribution != "cygwinports"} & "conf-mingw-w64-curl-x86_64" {os = "win32" & os-distribution != "cygwinports"}) 22 29 ] 23 30 synopsis: "Virtual package relying on a libcurl system installation" 24 31 description:
+19
packages/conf-mingw-w64-curl-i686/conf-mingw-w64-curl-i686.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "libcurl for i686 mingw-w64 (32-bit x86)" 3 + description: "Ensures the i686 version of libcurl for the mingw-w64 project is available" 4 + maintainer: "David Allsopp <david@tarides.com>" 5 + license: "MIT" 6 + authors: ["Daniel Stenberg"] 7 + homepage: "http://curl.haxx.se/" 8 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 9 + flags: conf 10 + available: os = "win32" 11 + build: ["pkgconf" "--personality=i686-w64-mingw32" "libcurl"] 12 + depends: [ 13 + "conf-pkg-config" {build} 14 + "conf-mingw-w64-gcc-i686" {build} 15 + ] 16 + depexts: [ 17 + ["mingw64-i686-curl"] {os = "win32" & os-distribution = "cygwin"} 18 + ["mingw-w64-i686-curl"] {os = "win32" & os-distribution = "msys2"} 19 + ]
+19
packages/conf-mingw-w64-curl-x86_64/conf-mingw-w64-curl-x86_64.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "libcurl for x86_64 mingw-w64 (64-bit x86_64)" 3 + description: "Ensures the x86_64 version of libcurl for the mingw-w64 project is available" 4 + maintainer: "David Allsopp <david@tarides.com>" 5 + license: "MIT" 6 + authors: ["Daniel Stenberg"] 7 + homepage: "http://curl.haxx.se/" 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" "libcurl"] 12 + depends: [ 13 + "conf-pkg-config" {build} 14 + "conf-mingw-w64-gcc-x86_64" {build} 15 + ] 16 + depexts: [ 17 + ["mingw64-x86_64-curl"] {os = "win32" & os-distribution = "cygwin"} 18 + ["mingw-w64-x86_64-curl"] {os = "win32" & os-distribution = "msys2"} 19 + ]