diff options
| author | phillc | 2013-08-30 08:11:15 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2013-08-30 09:43:29 -0700 |
| commit | 34136d2bd9107cd5c1512d9932ee71890b116c90 (patch) | |
| tree | a366494a4a423b53e2a0384fb7b95c3b0f3f285c /Library | |
| parent | 6c53c87a57efde93c175821531102ada4a64bbf2 (diff) | |
| download | homebrew-34136d2bd9107cd5c1512d9932ee71890b116c90.tar.bz2 | |
thrift: fix --HEAD
Closes #22218.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/thrift.rb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Library/Formula/thrift.rb b/Library/Formula/thrift.rb index dde090403..60d138441 100644 --- a/Library/Formula/thrift.rb +++ b/Library/Formula/thrift.rb @@ -5,7 +5,7 @@ class Thrift < Formula url 'http://www.apache.org/dyn/closer.cgi?path=thrift/0.9.0/thrift-0.9.0.tar.gz' sha1 'fefcf4d729bf80da419407dfa028740aa95fa2e3' - head 'http://svn.apache.org/repos/asf/thrift/trunk' + head 'https://git-wip-us.apache.org/repos/asf/thrift.git', :branch => "master" option "with-haskell", "Install Haskell binding" option "with-erlang", "Install Erlang binding" @@ -15,6 +15,11 @@ class Thrift < Formula depends_on 'boost' depends_on :python => :optional + if build.head? + depends_on :autoconf + depends_on :automake + depends_on :libtool + end # Includes are fixed in the upstream. Please remove this patch in the next version > 0.9.0 def patches |
