Skip to content

Commit

Permalink
whatmask: re-run autoreconf
Browse files Browse the repository at this point in the history
The ./configure file included in the 1.2 tarball is too old to work
with Xcode 12.

Closes #66398.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
  • Loading branch information
mitchblank authored and fxcoudert committed Dec 7, 2020
1 parent b7aafe4 commit 57a1527
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Formula/whatmask.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class Whatmask < Formula
homepage "http://www.laffeycomputer.com/whatmask.html"
url "https://web.archive.org/web/20170107110521/downloads.laffeycomputer.com/current_builds/whatmask/whatmask-1.2.tar.gz"
sha256 "7dca0389e22e90ec1b1c199a29838803a1ae9ab34c086a926379b79edb069d89"
license "GPL-2.0"
license "GPL-2.0-or-later"

bottle do
cellar :any_skip_relocation
Expand All @@ -16,7 +16,12 @@ class Whatmask < Formula
sha256 "c07eb39e586dbc2b78b4c8cf8173c701ac654e4db0fd5fe12b3c7f80ee3ef577" => :mavericks
end

depends_on "autoconf" => :build
depends_on "automake" => :build

def install
# The included ./configure file is too old to work with Xcode 12
system "autoreconf", "--verbose", "--install", "--force"
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--mandir=#{man}",
Expand Down

0 comments on commit 57a1527

Please sign in to comment.