Skip to content

Commit

Permalink
Merge pull request ocaml#26316 from rjbou/conf-automake
Browse files Browse the repository at this point in the history
conf-automake: add Cygwin support
  • Loading branch information
mseri authored Aug 2, 2024
2 parents 0296e2d + b8fca17 commit 83edd3a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/conf-automake/conf-automake.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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."
Expand Down

0 comments on commit 83edd3a

Please sign in to comment.