class XcbUtilRenderutil < Formula desc "Additional extensions to the XCB library." homepage "http://xcb.freedesktop.org" url "http://xcb.freedesktop.org/dist/xcb-util-renderutil-0.3.9.tar.bz2" sha256 "c6e97e48fb1286d6394dddb1c1732f00227c70bd1bedb7d1acabefdd340bea5b" option "with-static", "Build static libraries" depends_on "pkg-config" => :build depends_on "libxcb" def install args = %W[ --prefix=#{prefix} --sysconfdir=#{etc} --localstatedir=#{var} --disable-dependency-tracking --disable-silent-rules ] args << "--disable-static" if !build.with?("static") system "./configure", *args system "make" system "make", "install" end end