diff options
| author | Piotr Banasik | 2013-09-30 12:01:23 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-09-30 20:36:15 -0700 | 
| commit | 791560cbf0e3aa7cb09599a29f64e3bf73aca791 (patch) | |
| tree | 87702616a1637977ca51f8d5bf7c885b1903f226 /Library/Formula/tig.rb | |
| parent | 2f5734a0ce4584aa3f7c6f86694dd68e0af58928 (diff) | |
| download | homebrew-791560cbf0e3aa7cb09599a29f64e3bf73aca791.tar.bz2 | |
tig 1.2.1
Closes #22946.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/tig.rb')
| -rw-r--r-- | Library/Formula/tig.rb | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/tig.rb b/Library/Formula/tig.rb index 88a211990..2e2a48e65 100644 --- a/Library/Formula/tig.rb +++ b/Library/Formula/tig.rb @@ -2,15 +2,17 @@ require 'formula'  class Tig < Formula    homepage 'http://jonas.nitro.dk/tig/' -  url 'http://jonas.nitro.dk/tig/releases/tig-1.2.tar.gz' -  sha1 '38bff28a205b94623ad0c087a3073c986002dc83' +  url 'http://jonas.nitro.dk/tig/releases/tig-1.2.1.tar.gz' +  sha1 '5755bae7342debf94ef33973e0eaff6207e623dc' + +  depends_on "asciidoc" +  depends_on "xmlto"    def install      system "./configure", "--prefix=#{prefix}", "--sysconfdir=#{etc}"      system "make install"      system "make install-doc-man" -    doc.install Dir['*.html']      bash_completion.install 'contrib/tig-completion.bash'    end  end  | 
