3abd5ee762
Thrift is a software framework for scalable cross-language services development. It combines a powerful software stack with a code generation engine to build services that work efficiently and seamlessly between C++, Java, Python, PHP, and Ruby. Thrift was developed at Facebook and released as open source.
30 lines
870 B
Ruby
30 lines
870 B
Ruby
require 'brewkit'
|
|
|
|
# TODO Fix java support anyone?
|
|
#
|
|
#
|
|
|
|
class Thrift <Formula
|
|
@homepage='http://incubator.apache.org/thrift/'
|
|
@head='http://svn.apache.org/repos/asf/incubator/thrift/trunk'
|
|
|
|
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
|
|
|
|
def caveats; <<-EOS
|
|
We didn't install the python bindings, to do that:
|
|
|
|
easy_install thrift
|
|
EOS
|
|
end
|
|
end
|