aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBas Kok2010-08-21 19:10:13 +0200
committerAdam Vandenberg2010-08-21 10:45:46 -0700
commit67ec3c0f2d5042e2afda7f76b70433176d7ba9c5 (patch)
tree5b82d6ab34f82a0960e7324e8243fbb42cfbe267 /Library
parent2bb385c3e0751ec54f6c11f92105b3db1cca732e (diff)
downloadhomebrew-67ec3c0f2d5042e2afda7f76b70433176d7ba9c5.tar.bz2
bumped thrift version to 0.3.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/thrift.rb12
1 files changed, 7 insertions, 5 deletions
diff --git a/Library/Formula/thrift.rb b/Library/Formula/thrift.rb
index 45a32945d..1f64f5d96 100644
--- a/Library/Formula/thrift.rb
+++ b/Library/Formula/thrift.rb
@@ -2,10 +2,10 @@ require 'formula'
class Thrift <Formula
homepage 'http://incubator.apache.org/thrift/'
- url 'http://apache.dataphone.se/incubator/thrift/0.2.0-incubating/thrift-0.2.0-incubating.tar.gz'
- version '0.2.0'
- md5 '9958c57c402c02171ba0bcc96183505c'
head 'http://svn.apache.org/repos/asf/incubator/thrift/trunk'
+ version '0.3.0'
+ url 'http://www.apache.org/dist/incubator/thrift/0.3.0-incubating/thrift-0.3.0.tar.gz'
+ md5 'a6c80ab3d8c7827365a9b40f5c9d66a3'
depends_on 'boost'
@@ -20,7 +20,9 @@ class Thrift <Formula
"--without-py",
# again, use gem
"--without-ruby",
- "--without-perl"
+ "--without-perl",
+ # this wants to alter the system wide autoloads file
+ "--without-php"
system "make"
system "make install"
end
@@ -31,7 +33,7 @@ class Thrift <Formula
gem install thrift
easy_install thrift
- Perl bindings are a mystery someone should solve.
+ Perl and PHP bindings are a mystery someone should solve.
EOS
end
end