Skip to content

Commit 315d7e6

Browse files
committed
xcb-util-renderutil: migrate to pkgconf
1 parent aa98557 commit 315d7e6

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Formula/x/xcb-util-renderutil.rb

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,22 @@ class XcbUtilRenderutil < Formula
2020
end
2121

2222
head do
23-
url "https://gitlab.freedesktop.org/xorg/lib/libxcb-render-util.git"
23+
url "https://gitlab.freedesktop.org/xorg/lib/libxcb-render-util.git", branch: "master"
2424

2525
depends_on "autoconf" => :build
2626
depends_on "automake" => :build
2727
depends_on "libtool" => :build
2828
end
2929

30-
depends_on "pkg-config" => [:build, :test]
30+
depends_on "pkgconf" => [:build, :test]
3131
depends_on "libxcb"
3232

3333
def install
3434
system "./autogen.sh" if build.head?
35-
system "./configure", "--prefix=#{prefix}",
36-
"--sysconfdir=#{etc}",
35+
system "./configure", "--disable-silent-rules",
3736
"--localstatedir=#{var}",
38-
"--disable-dependency-tracking",
39-
"--disable-silent-rules"
37+
"--sysconfdir=#{etc}",
38+
*std_configure_args
4039
system "make"
4140
system "make", "install"
4241
end

0 commit comments

Comments
 (0)