b6e6f14a51
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
35 lines
903 B
Ruby
35 lines
903 B
Ruby
require 'formula'
|
|
|
|
class GitCola < Formula
|
|
homepage 'http://git-cola.github.io/'
|
|
url 'https://github.com/git-cola/git-cola/archive/v1.8.4.tar.gz'
|
|
sha1 '7554c7e6932f22de604fae0aaa8e8d4968596ce4'
|
|
|
|
head 'https://github.com/git-cola/git-cola.git'
|
|
|
|
option 'with-docs', "Build man pages using asciidoc and xmlto"
|
|
|
|
depends_on :python
|
|
depends_on 'pyqt'
|
|
|
|
if build.include? 'with-docs'
|
|
# these are needed to build man pages
|
|
depends_on 'asciidoc'
|
|
depends_on 'xmlto'
|
|
end
|
|
|
|
def install
|
|
python do
|
|
# The python do block creates the PYTHONPATH and temp. 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
|
|
end
|
|
|
|
end
|