ipmiutil: remove openssl since LANPLUS is disabled

Closes #112827.

Signed-off-by: Dawid Dziurla <dawidd0811@gmail.com>
Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
master
Michael Cho 2022-10-10 19:11:32 -07:00 committed by BrewTestBot
parent 7f1dd0bb28
commit ff50be7f88
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
1 changed files with 10 additions and 6 deletions

View File

@ -13,19 +13,23 @@ class Ipmiutil < Formula
sha256 cellar: :any_skip_relocation, x86_64_linux: "97654675eb07ff4c52dfc12434302e4c57a50be29e18839d063e9f2acf4955b1"
end
on_macos do
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "openssl@1.1"
end
conflicts_with "renameutils", because: "both install `icmd` binaries"
def install
# Darwin does not exist only on PowerPC
if OS.mac?
inreplace "configure.ac", "test \"$archp\" = \"powerpc\"", "true"
system "autoreconf", "-fiv"
system "autoreconf", "--force", "--install", "--verbose"
end
system "./configure", *std_configure_args,
"--disable-silent-rules",
"--disable-lanplus",
"--enable-sha256",
"--enable-gpl"