homebrew-core/Formula/thrift.rb

33 lines
907 B
Ruby
Raw Normal View History

require 'formula'
# TODO Fix java support anyone?
#
#
class Thrift <Formula
homepage 'http://incubator.apache.org/thrift/'
head 'http://svn.apache.org/repos/asf/incubator/thrift/trunk'
depends_on 'boost'
def install
FileUtils.cp "/usr/X11/share/aclocal/pkg.m4", "aclocal"
system "./bootstrap.sh"
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"
system "make"
system "make install"
end
2010-02-27 17:26:27 +00:00
def caveats; <<-EOS.undent
We didn't install the python bindings, to do that:
2010-02-27 17:26:27 +00:00
easy_install thrift
EOS
end
end