aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-03-13 17:15:59 -0500
committerJack Nagel2014-03-13 17:15:59 -0500
commit563c7406142c32cc8fd7b84b54841abb42fb9315 (patch)
tree43566146cb9acae34a4bdeebe123348a4249f14d /Library/Formula
parent8285c8d5a6806571dd818b91632717e8f918b277 (diff)
downloadhomebrew-563c7406142c32cc8fd7b84b54841abb42fb9315.tar.bz2
tig: HEAD depends on autoconf and automake
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/tig.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/Library/Formula/tig.rb b/Library/Formula/tig.rb
index 438e550c5..be3024d5a 100644
--- a/Library/Formula/tig.rb
+++ b/Library/Formula/tig.rb
@@ -2,10 +2,15 @@ require 'formula'
class Tig < Formula
homepage 'http://jonas.nitro.dk/tig/'
- head 'https://github.com/jonas/tig.git'
url 'http://jonas.nitro.dk/tig/releases/tig-1.2.1.tar.gz'
sha1 '5755bae7342debf94ef33973e0eaff6207e623dc'
+ 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"