vorbis-tools: depend on `curl`.

Linkage picked up at #110187 and seen again at #111467.

Bumping the revision does not work because `curl` is a build dependency
that is declared through `url ... using: :homebrew_curl`, so rebuilding
this cannot prevent linkage with `curl`.

Additionally, the build currently fails on Monterey, presumably due to
Xcode 14.

Closes #111637.

Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
master
Carlo Cabrera 2022-09-25 13:14:18 +08:00 committed by BrewTestBot
parent 63a008e59f
commit d4fe79a8c2
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
1 changed files with 3 additions and 2 deletions

View File

@ -21,13 +21,14 @@ class VorbisTools < Formula
end
depends_on "pkg-config" => :build
# FIXME: This should be `uses_from_macos "curl"`, but linkage with Homebrew curl
# is unavoidable because this does `using: :homebrew_curl` above.
depends_on "curl"
depends_on "flac"
depends_on "libao"
depends_on "libogg"
depends_on "libvorbis"
uses_from_macos "curl"
def install
system "./configure", *std_configure_args, "--disable-nls"
system "make", "install"