2011-02-25 19:40:36 +00:00
|
|
|
class GitCola < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Highly caffeinated git GUI"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://git-cola.github.io/"
|
2015-11-14 07:19:19 +00:00
|
|
|
url "https://github.com/git-cola/git-cola/archive/v2.4.tar.gz"
|
|
|
|
sha256 "ef735431a2e58bac7671c4b9ab4fbb369195b16987fe9d3d931a9097c06c7f36"
|
2014-07-26 04:21:07 +00:00
|
|
|
head "https://github.com/git-cola/git-cola.git"
|
2011-02-25 19:40:36 +00:00
|
|
|
|
2014-08-21 08:13:25 +00:00
|
|
|
bottle do
|
2015-09-24 18:54:17 +00:00
|
|
|
cellar :any_skip_relocation
|
2015-11-14 07:39:07 +00:00
|
|
|
sha256 "1d9b0f0b7df97b5e37fdf2b548f297aca05d303b4b27e66a81bd2972a9164163" => :el_capitan
|
|
|
|
sha256 "0e307cb96047b9448bc531188fb8f44831074647a95819d5de76c59b4c4fb9fa" => :yosemite
|
|
|
|
sha256 "3c1cde2b3b70661603f9eb94d3d0560ceaf27b11b98edb2b68b3bf524c444751" => :mavericks
|
2014-08-21 08:13:25 +00:00
|
|
|
end
|
|
|
|
|
2015-11-15 21:18:58 +00:00
|
|
|
option "with-docs", "Build manpages and HTML docs"
|
2011-02-25 19:40:36 +00:00
|
|
|
|
2014-07-26 04:21:07 +00:00
|
|
|
depends_on "pyqt"
|
2015-11-16 07:06:28 +00:00
|
|
|
depends_on "sphinx-doc" => :build if build.with? "docs"
|
2012-01-05 05:42:13 +00:00
|
|
|
|
2011-02-25 19:40:36 +00:00
|
|
|
def install
|
2014-01-04 13:06:07 +00:00
|
|
|
system "make", "prefix=#{prefix}", "install"
|
|
|
|
|
2014-03-06 20:40:26 +00:00
|
|
|
if build.with? "docs"
|
2015-11-15 21:18:58 +00:00
|
|
|
system "make", "install-doc", "prefix=#{prefix}",
|
2015-11-16 07:06:28 +00:00
|
|
|
"SPHINXBUILD=#{Formula["sphinx-doc"].opt_bin}/sphinx-build"
|
2012-01-05 05:42:13 +00:00
|
|
|
end
|
2011-02-25 19:40:36 +00:00
|
|
|
end
|
2012-08-21 03:41:11 +00:00
|
|
|
|
2014-12-22 21:20:28 +00:00
|
|
|
test do
|
|
|
|
system "#{bin}/git-cola", "--version"
|
|
|
|
end
|
2011-02-25 19:40:36 +00:00
|
|
|
end
|