blob: c1631764fb831f6f007e79157740647aff58d10a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
require 'formula'
class GitCola < Formula
homepage 'http://git-cola.github.com/'
url 'https://github.com/git-cola/git-cola/tarball/v1.7.6'
md5 'c6266d2e4f008e072f60c1e6d5fd1bb7'
head 'https://github.com/git-cola/git-cola.git'
depends_on 'pyqt'
def options
[['--build-docs', "Build man pages using asciidoc and xmlto"]]
end
if ARGV.include? '--build-docs'
# these are needed to build man pages
depends_on 'asciidoc'
depends_on 'xmlto'
end
def install
ENV.prepend 'PYTHONPATH', "#{HOMEBREW_PREFIX}/lib/python", ':'
system "make", "prefix=#{prefix}", "install"
if ARGV.include? '--build-docs'
system "make",
"-C", "share/doc/git-cola",
"-f", "Makefile.asciidoc",
"prefix=#{prefix}",
"install", "install-html"
end
end
end
|