homebrew-core/Formula/thrift.rb

41 lines
1.2 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.5.0-incubating/thrift-0.5.0.tar.gz'
md5 '14c97adefb4efc209285f63b4c7f51f2'
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'
2010-10-30 22:59:05 +00:00
# Language bindings try to install outside of Homebrew's prefix, so
# omit them here. For ruby you can install the gem, and for Python
# you can use pip or easy_install.
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
"--libdir=#{lib}",
"--without-java",
"--without-python",
"--without-ruby",
"--without-perl",
"--without-php"
ENV.j1
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