07ff7085a6
Closes Homebrew/homebrew#28539. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
31 lines
755 B
Ruby
31 lines
755 B
Ruby
require 'formula'
|
|
|
|
class GitCola < Formula
|
|
homepage 'http://git-cola.github.io/'
|
|
url 'https://github.com/git-cola/git-cola/archive/v2.0.2.tar.gz'
|
|
sha1 'e3357ca8dc6bce1e92f5195bbefc0a82edbff262'
|
|
|
|
head 'https://github.com/git-cola/git-cola.git'
|
|
|
|
option 'with-docs', "Build man pages using asciidoc and xmlto"
|
|
|
|
depends_on 'pyqt'
|
|
|
|
if build.with? "docs"
|
|
# these are needed to build man pages
|
|
depends_on 'asciidoc'
|
|
depends_on 'xmlto'
|
|
end
|
|
|
|
def install
|
|
system "make", "prefix=#{prefix}", "install"
|
|
|
|
if build.with? "docs"
|
|
system "make", "-C", "share/doc/git-cola",
|
|
"-f", "Makefile.asciidoc",
|
|
"prefix=#{prefix}",
|
|
"install", "install-html"
|
|
end
|
|
end
|
|
|
|
end
|