require 'formula' class GitCola < Formula homepage 'http://git-cola.github.com/' url 'https://github.com/git-cola/git-cola/tarball/v1.8.0' sha1 'c36607dbff93e0a36954b500548a90f26b7a0b74' head 'https://github.com/git-cola/git-cola.git' option 'with-docs', "Build man pages using asciidoc and xmlto" depends_on 'pyqt' if build.include? 'with-docs' # these are needed to build man pages depends_on 'asciidoc' depends_on 'xmlto' end def install ENV.prepend 'PYTHONPATH', "#{HOMEBREW_PREFIX}/lib/#{which_python}/site-packages", ':' system "make", "prefix=#{prefix}", "install" if build.include? 'with-docs' system "make", "-C", "share/doc/git-cola", "-f", "Makefile.asciidoc", "prefix=#{prefix}", "install", "install-html" end end def which_python "python" + `python -c 'import sys;print(sys.version[:3])'`.strip end end