From 82da245421be8dcf213d4312bb5f6f3d3aef376f Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Sun, 22 Jan 2023 12:40:30 -0800 Subject: [PATCH] gdl: add `gettext` build dependency and use std_configure_args Closes #121274. Signed-off-by: Patrick Linnane Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> --- Formula/gdl.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Formula/gdl.rb b/Formula/gdl.rb index b6592873884..0de6bf68aab 100644 --- a/Formula/gdl.rb +++ b/Formula/gdl.rb @@ -17,6 +17,7 @@ class Gdl < Formula sha256 cellar: :any_skip_relocation, x86_64_linux: "26ae14bf457ab681be21fe8b61fa612af211f80c2d8f52416dbb4a9f55eaa0e7" end + depends_on "gettext" => :build depends_on "gobject-introspection" => :build depends_on "intltool" => :build depends_on "pkg-config" => :build @@ -30,9 +31,9 @@ class Gdl < Formula ENV["INTLTOOL_PERL"] = Formula["perl"].bin/"perl" end - system "./configure", "--disable-dependency-tracking", + system "./configure", *std_configure_args, "--disable-silent-rules", - "--prefix=#{prefix}" + "--enable-introspection=yes" system "make", "install" end