this repo has no description
0
fork

Configure Feed

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

Merge pull request #27047 from tobil4sk/libpcre2

Support conf-libpcre2-8 on mingw

authored by

Shon Feder and committed by
GitHub
3f0cf4a2 1d30d627

+86
+42
packages/conf-libpcre2-8/conf-libpcre2-8.2/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "https://github.com/ocaml/opam-repository/issues" 3 + authors: [ 4 + "Philip Hazel" 5 + "Zoltan Herczeg" 6 + ] 7 + homepage: "https://www.pcre.org/" 8 + dev-repo: "git+https://github.com/PCRE2Project/pcre2.git" 9 + license: "BSD-3-Clause" 10 + build: [ 11 + ["pkgconf" {os = "win32" & os-distribution = "cygwin"} 12 + "--personality=i686-w64-mingw32" {os = "win32" & os-distribution = "cygwin" & host-arch-x86_32:installed} 13 + "--personality=x86_64-w64-mingw32" {os = "win32" & os-distribution = "cygwin" & host-arch-x86_64:installed} 14 + "pkg-config" {os != "win32" | os-distribution != "cygwin"} 15 + "--print-errors" "--exists" "libpcre2-8" 16 + ]] 17 + depends: [ 18 + "conf-pkg-config" {build} 19 + ("host-arch-x86_32" {os = "win32" & os-distribution = "cygwin"} & "conf-mingw-w64-pcre2-i686" {os = "win32" & os-distribution = "cygwin"} | 20 + "host-arch-x86_64" {os = "win32" & os-distribution = "cygwin"} & "conf-mingw-w64-pcre2-x86_64" {os = "win32" & os-distribution = "cygwin"}) 21 + ] 22 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 23 + depexts: [ 24 + ["libpcre2-dev"] {os-family = "debian"} 25 + ["libpcre2-dev"] {os-family = "ubuntu"} 26 + ["libpcre2-devel"] {os-distribution = "mageia"} 27 + ["pcre2-devel"] {os-distribution = "centos"} 28 + ["pcre2-devel"] {os-distribution = "fedora"} 29 + ["pcre2-devel"] {os-distribution = "rhel"} 30 + ["pcre2-devel"] {os-distribution = "ol"} 31 + ["pcre2-dev"] {os-distribution = "alpine"} 32 + ["pcre2-devel"] {os-family = "suse" | os-family = "opensuse"} 33 + ["pcre2"] {os-family = "arch"} 34 + ["pcre2"] {os = "freebsd"} 35 + ["pcre2"] {os = "macos" & os-distribution = "homebrew"} 36 + ["pcre2"] {os = "macos" & os-distribution = "macports"} 37 + ["pcre2"] {os = "win32" & os-distribution = "cygwinports"} 38 + ] 39 + synopsis: "Virtual package relying on a libpcre2 system installation" 40 + description: 41 + "This package can only install if the libpcre2 is installed on the system." 42 + flags: conf
+22
packages/conf-mingw-w64-pcre2-i686/conf-mingw-w64-pcre2-i686.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Libpcre2 for i686 mingw-w64 (32-bit x86)" 3 + description: "Ensures the i686 version of libpcre2 for the mingw-w64 project is available" 4 + maintainer: "tobil4sk" 5 + authors:[ 6 + "Philip Hazel" 7 + "Zoltan Herczeg" 8 + ] 9 + license: "BSD-3-Clause" 10 + homepage: "https://www.pcre.org/" 11 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 12 + flags: conf 13 + available: os = "win32" & os-distribution = "cygwin" 14 + build: ["pkgconf" "--personality=i686-w64-mingw32" "libpcre2-8"] 15 + depends: [ 16 + "conf-pkg-config" {build} 17 + "conf-mingw-w64-gcc-i686" {build} 18 + ] 19 + depexts: [ 20 + ["mingw64-i686-pcre2"] {os = "win32" & os-distribution = "cygwin"} 21 + ["mingw-w64-i686-pcre2"] {os = "win32" & os-distribution = "msys2"} 22 + ]
+22
packages/conf-mingw-w64-pcre2-x86_64/conf-mingw-w64-pcre2-x86_64.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Libpcre2 for x86_64 mingw-w64 (64-bit x86_64)" 3 + description: "Ensures the x86_64 version of libpcre2 for the mingw-w64 project is available" 4 + maintainer: "tobil4sk" 5 + authors:[ 6 + "Philip Hazel" 7 + "Zoltan Herczeg" 8 + ] 9 + license: "BSD-3-Clause" 10 + homepage: "https://www.pcre.org/" 11 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 12 + flags: conf 13 + available: os = "win32" & os-distribution = "cygwin" 14 + build: ["pkgconf" "--personality=x86_64-w64-mingw32" "libpcre2-8"] 15 + depends: [ 16 + "conf-pkg-config" {build} 17 + "conf-mingw-w64-gcc-x86_64" {build} 18 + ] 19 + depexts: [ 20 + ["mingw64-x86_64-pcre2"] {os = "win32" & os-distribution = "cygwin"} 21 + ["mingw-w64-x86_64-pcre2"] {os = "win32" & os-distribution = "msys2"} 22 + ]