homebrew-core/Formula/git-cola.rb

36 lines
955 B
Ruby
Raw Normal View History

require 'formula'
class GitCola < Formula
2013-04-07 02:34:41 +00:00
homepage 'http://git-cola.github.io/'
url 'https://github.com/git-cola/git-cola/archive/v1.8.3.tar.gz'
sha1 '22c3376c26d642ec94a0ae2481b08a49cd6b41e0'
2012-08-28 04:13:20 +00:00
head 'https://github.com/git-cola/git-cola.git'
2012-08-28 04:13:20 +00:00
option 'with-docs', "Build man pages using asciidoc and xmlto"
2012-08-28 04:13:20 +00:00
depends_on 'pyqt'
2012-08-28 04:13:20 +00:00
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"
2012-08-28 04:13:20 +00:00
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