2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-01 13:05:18 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Thrift < Formula
|
2009-10-04 23:36:13 +00:00
|
|
|
homepage 'http://incubator.apache.org/thrift/'
|
2011-05-17 16:34:36 +00:00
|
|
|
head 'http://svn.apache.org/repos/asf/thrift/trunk'
|
2011-05-05 02:06:45 +00:00
|
|
|
url 'http://www.apache.org/dist/thrift/0.6.1/thrift-0.6.1.tar.gz'
|
|
|
|
md5 'e1ec722d5f38077a23a32c4de4d4ce94'
|
2009-09-01 13:05:18 +00:00
|
|
|
|
2009-10-04 23:36:13 +00:00
|
|
|
depends_on 'boost'
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2009-09-01 13:05:18 +00:00
|
|
|
def install
|
2010-03-28 01:41:03 +00:00
|
|
|
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}",
|
2011-02-19 00:19:28 +00:00
|
|
|
"--without-haskell",
|
2010-10-30 22:59:05 +00:00
|
|
|
"--without-java",
|
|
|
|
"--without-python",
|
|
|
|
"--without-ruby",
|
|
|
|
"--without-perl",
|
|
|
|
"--without-php"
|
2011-01-20 22:39:13 +00:00
|
|
|
ENV.j1
|
2009-09-01 13:05:18 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
2010-03-28 01:41:03 +00:00
|
|
|
|
2010-02-27 17:26:27 +00:00
|
|
|
def caveats; <<-EOS.undent
|
2010-03-28 01:41:03 +00:00
|
|
|
Some bindings were not installed. You may like to do the following:
|
2009-09-01 13:05:18 +00:00
|
|
|
|
2010-03-28 01:41:03 +00:00
|
|
|
gem install thrift
|
2010-02-27 17:26:27 +00:00
|
|
|
easy_install thrift
|
2010-03-28 01:41:03 +00:00
|
|
|
|
2010-08-21 17:10:13 +00:00
|
|
|
Perl and PHP bindings are a mystery someone should solve.
|
2009-09-01 13:05:18 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|