class XcbUtilKeysyms < Formula desc "Additional extensions to the XCB library." homepage "http://xcb.freedesktop.org" url "http://xcb.freedesktop.org/dist/xcb-util-keysyms-0.4.0.tar.bz2" sha256 "0ef8490ff1dede52b7de533158547f8b454b241aa3e4dcca369507f66f216dd9" 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