Skip to content

Commit

Permalink
Add depexts for pkgconf for MSYS2
Browse files Browse the repository at this point in the history
Cygwin uses pkgconf --personality, but MSYS2 uses native builds.
  • Loading branch information
dra27 committed Mar 10, 2024
1 parent 5b5ba20 commit 3e07192
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
opam-version: "2.0"
synopsis: "Virtual package for pkgconf on i686 mingw-w64 (32-bit x86)"
description: "Ensures the i686 version of pkgconf for the mingw-w64 project is available"
maintainer: "David Allsopp <david@tarides.com>"
authors: "Ariadne Conill et al"
license: "ISC"
homepage: "http://pkgconf.org"
bug-reports: "https://github.com/ocaml/opam-repository/issues"
flags: conf
available: os = "win32"
build: ["i686-w64-mingw32-pkgconf" "--version"]
depexts: [
["mingw-w64-i686-pkgconf"] {os = "win32" & os-distribution = "msys2"}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
opam-version: "2.0"
synopsis: "Virtual package for pkgconf on x86_64 mingw-w64 (64-bit x86_64)"
description: "Ensures the x86_64 version of pkgconf for the mingw-w64 project is available"
maintainer: "David Allsopp <david@tarides.com>"
authors: "Ariadne Conill et al"
license: "ISC"
homepage: "http://pkgconf.org"
bug-reports: "https://github.com/ocaml/opam-repository/issues"
flags: conf
available: os = "win32"
build: ["x86_64-w64-mingw32-pkgconf" "--version"]
depexts: [
["mingw-w64-x86_64-pkgconf"] {os = "win32" & os-distribution = "msys2"}
]

0 comments on commit 3e07192

Please sign in to comment.