homebrew-core/Formula/thrift.rb

39 lines
1.3 KiB
Ruby
Raw Normal View History

require 'formula'
class Thrift <Formula
homepage 'http://incubator.apache.org/thrift/'
head 'http://svn.apache.org/repos/asf/incubator/thrift/trunk'
url 'http://www.apache.org/dist/incubator/thrift/0.4.0-incubating/thrift-0.4.0.tar.gz'
md5 'bb8466e5b884e9edef862a64f57abe38'
depends_on 'boost'
def install
cp "/usr/X11/share/aclocal/pkg.m4", "aclocal"
2010-03-27 14:47:49 +00:00
system "./bootstrap.sh" if version == 'HEAD'
system "./configure","--disable-debug","--without-java",
"--prefix=#{prefix}","--libdir=#{lib}",
# rationale: this can be installed with easy_install
# and when you do that, it installs properly, we
# can't install it properly without leaving Homebrew's prefix
"--without-py",
# again, use gem
"--without-ruby",
"--without-perl",
# this wants to alter the system wide autoloads file
"--without-php"
system "make"
system "make install"
end
2010-02-27 17:26:27 +00:00
def caveats; <<-EOS.undent
Some bindings were not installed. You may like to do the following:
gem install thrift
2010-02-27 17:26:27 +00:00
easy_install thrift
Perl and PHP bindings are a mystery someone should solve.
EOS
end
end