Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

conf-automake: add Cygwin support #26316

Merged
merged 1 commit into from
Aug 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion packages/conf-automake/conf-automake.1/opam
Original file line number Diff line number Diff line change
@@ -4,7 +4,10 @@ homepage: "https://www.gnu.org/software/automake"
authors: ["Jim Meyering" "David J. MacKenzie" "https://git.savannah.gnu.org/cgit/automake.git/tree/THANKS"]
bug-reports: "https://www.gnu.org/software/automake/manual/html_node/Reporting-Bugs.html"
license: "GPL-2.0-or-later"
build: [ "automake" "--help" ]
build: [
["sh" "-exc" "automake --help"] {os = "win32" & os-distribution != "cygwinports"}
[ "automake" "--help" ] {os != "win32" | os-distribution = "cygwinports"}
]
depends: "conf-autoconf"
depexts: [
# The list of supported os-family names can be derived from the opam sources (thanks Enrico)
@@ -29,6 +32,8 @@ depexts: [
[ "automake" ] {os-family = "suse" | os-family = "opensuse"}
[ "devel/automake" ] {os-family = "bsd"}
[ "automake" ] {os-family = "nixos"}
[ "system:automake" ] {os = "win32" & os-distribution = "cygwinports"}
[ "automake" ] {os-distribution = "cygwin"}
]
synopsis: "Virtual package relying on GNU automake"
description: "This package can only install if GNU automake is installed on the system."