homebrew-core/Formula/tig.rb
2015-09-13 20:43:01 +01:00

52 lines
1.8 KiB
Ruby

class Tig < Formula
desc "Text interface for Git repositories"
homepage "http://jonas.nitro.dk/tig/"
url "http://jonas.nitro.dk/tig/releases/tig-2.1.1.tar.gz"
sha256 "50c5179fd564b829b6b2cec087e66f10cf8799601de19350df0772ae77e4852f"
head "https://github.com/jonas/tig.git"
stable do
url "http://jonas.nitro.dk/tig/releases/tig-2.1.1.tar.gz"
sha256 "50c5179fd564b829b6b2cec087e66f10cf8799601de19350df0772ae77e4852f"
# Merged in HEAD; remove in next stable release
patch do
url "https://github.com/jonas/tig/commit/91912eb97da4f6907015dab41ef9bba315730854.diff"
sha256 "263e86b25f788eb158bdd667e112bc839debe9e3fe788cbc39cc9654b65b6c8a"
end
end
bottle do
cellar :any
revision 1
sha256 "e468112c6040d14397fa6976911345f691b20564166a6d116793f89e586245cf" => :el_capitan
sha256 "f03fc214aa0b8f286a0e015ec447b342450e967abcb2ffad81c2211a2052dfbc" => :yosemite
sha256 "b6996765930e0d2e17a17eaebc57fe6ba747db7a875469ca11bc782f1a344863" => :mavericks
sha256 "d8fb10c0fd9ddbad7ef40cbddf2117b0552b6c4db64d5d6b9917bff6bdec358e" => :mountain_lion
end
head do
url "https://github.com/jonas/tig.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
end
option "with-docs", "Build man pages using asciidoc and xmlto"
if build.with? "docs"
depends_on "asciidoc"
depends_on "xmlto"
end
depends_on "readline" => :recommended
def install
system "./autogen.sh" if build.head?
system "./configure", "--prefix=#{prefix}", "--sysconfdir=#{etc}"
system "make", "install"
system "make install-doc-man" if build.with? "docs"
bash_completion.install "contrib/tig-completion.bash"
zsh_completion.install "contrib/tig-completion.zsh" => "_tig"
cp "#{bash_completion}/tig-completion.bash", zsh_completion
end
end