homebrew-core/Formula/thrift.rb

89 lines
2.9 KiB
Ruby

class Thrift < Formula
desc "Framework for scalable cross-language services development"
homepage "https://thrift.apache.org/"
stable do
url "https://www.apache.org/dyn/closer.cgi?path=/thrift/0.9.3/thrift-0.9.3.tar.gz"
sha256 "b0740a070ac09adde04d43e852ce4c320564a292f26521c46b78e0641564969e"
# Apply any necessary patches (none currently required)
[
# Example patch:
#
# Apply THRIFT-2201 fix from master to 0.9.1 branch (required for clang to compile with C++11 support)
# %w{836d95f9f00be73c6936d407977796181d1a506c f8e14cbae1810ade4eab49d91e351459b055c81dba144c1ca3c5d6f4fe440925},
].each do |name, sha|
patch do
url "https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=commitdiff_plain;h=#{name}"
sha256 sha
end
end
end
bottle do
cellar :any
sha256 "faa61383db2180f31b57b1821c6e01128ba966558d99aae09f9d7478c93f287d" => :sierra
sha256 "171011fa42efb2fcafb1bae1e2d173e585eda199f145a62a825359c7a622b24b" => :el_capitan
sha256 "655bb0a05eb51ff465f8f378a7d3ea2438095e2d4c2a70da45965731b5de9cfb" => :yosemite
sha256 "092ff2a100f41871d3527c450403cfc2cf1cc0527ce2fdb4089f93915365713d" => :mavericks
end
head do
url "https://git-wip-us.apache.org/repos/asf/thrift.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "pkg-config" => :build
end
option "with-haskell", "Install Haskell binding"
option "with-erlang", "Install Erlang binding"
option "with-java", "Install Java binding"
option "with-perl", "Install Perl binding"
option "with-php", "Install PHP binding"
option "with-libevent", "Install nonblocking server libraries"
depends_on "bison" => :build
depends_on "boost"
depends_on "openssl"
depends_on "libevent" => :optional
depends_on :python => :optional
def install
system "./bootstrap.sh" unless build.stable?
exclusions = ["--without-ruby", "--disable-tests", "--without-php_extension"]
exclusions << "--without-python" if build.without? "python"
exclusions << "--without-haskell" if build.without? "haskell"
exclusions << "--without-java" if build.without? "java"
exclusions << "--without-perl" if build.without? "perl"
exclusions << "--without-php" if build.without? "php"
exclusions << "--without-erlang" if build.without? "erlang"
ENV.cxx11 if MacOS.version >= :mavericks && ENV.compiler == :clang
# Don't install extensions to /usr:
ENV["PY_PREFIX"] = prefix
ENV["PHP_PREFIX"] = prefix
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
"--libdir=#{lib}",
*exclusions
ENV.j1
system "make"
system "make", "install"
end
def caveats; <<-EOS.undent
To install Ruby binding:
gem install thrift
To install PHP extension for e.g. PHP 5.5:
brew install homebrew/php/php55-thrift
EOS
end
end