Skip to content

Instantly share code, notes, and snippets.

@mutaphysis
Created April 10, 2015 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mutaphysis/36c93c0f9faa9377c619 to your computer and use it in GitHub Desktop.
Save mutaphysis/36c93c0f9faa9377c619 to your computer and use it in GitHub Desktop.
protobuf-std.rb tap for homebrew (2.6.1)
class ProtobufStd < Formula
homepage "https://github.com/google/protobuf/"
url 'https://github.com/google/protobuf/releases/download/v2.6.1/protobuf-2.6.1.tar.bz2'
sha1 '6421ee86d8fb4e39f21f56991daa892a3e8d314b'
devel do
url "https://github.com/google/protobuf/archive/v3.0.0-alpha-2.tar.gz"
sha256 "46df8649e2a0ce736e37f8f347f92b32a9b8b54d672bf60bd8f6f4d24d283390"
version "3.0.0-alpha-2"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
# this will double the build time approximately if enabled
option "with-check", "Run build-time check"
option :universal
option :cxx11
depends_on :python => :optional
fails_with :llvm do
build 2334
end
resource "six" do
url "https://pypi.python.org/packages/source/s/six/six-1.9.0.tar.gz"
sha256 "e24052411fc4fbd1f672635537c3fc2330d9481b18c0317695b46259512c91d5"
end
resource "python-dateutil" do
url "https://pypi.python.org/packages/source/p/python-dateutil/python-dateutil-2.4.1.tar.bz2"
sha256 "a9f62b12e28f11c732ad8e255721a9c7ab905f9479759491bc1f1e91de548d0f"
end
resource "pytz" do
url "https://pypi.python.org/packages/source/p/pytz/pytz-2014.10.tar.bz2"
sha256 "387f968fde793b142865802916561839f5591d8b4b14c941125eb0fca7e4e58d"
end
resource "python-gflags" do
url "https://pypi.python.org/packages/source/p/python-gflags/python-gflags-2.0.tar.gz"
sha256 "0dff6360423f3ec08cbe3bfaf37b339461a54a21d13be0dd5d9c9999ce531078"
end
resource "google-apputils" do
url "https://pypi.python.org/packages/source/g/google-apputils/google-apputils-0.4.2.tar.gz"
sha256 "47959d0651c32102c10ad919b8a0ffe0ae85f44b8457ddcf2bdc0358fb03dc29"
end
def install
# Don't build in debug mode. See:
# https://github.com/Homebrew/homebrew/issues/9279
# http://code.google.com/p/protobuf/source/browse/trunk/configure.ac#61
ENV.prepend "CXXFLAGS", "-DNDEBUG"
ENV.universal_binary if build.universal?
ENV.cxx11 if build.cxx11?
# ADD THE FOLLOWING:
ENV.append 'CXXFLAGS', '-stdlib=libstdc++'
ENV.append 'CFLAGS', '-stdlib=libstdc++'
ENV.append 'LDFLAGS', '-stdlib=libstdc++ -lstdc++'
# The following is necessary because libtool liks to strip LDFLAGS:
ENV['CXX'] = '/usr/bin/clang -stdlib=libstdc++'
ENV['HOMEBREW_CXX'] = '/usr/bin/clang -stdlib=libstdc++'
system "./autogen.sh" if build.devel?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-zlib"
system "make"
system "make", "check" if build.with? "check" || build.bottle?
system "make", "install"
# Install editor support and examples
doc.install "editors", "examples"
if build.with? "python"
# google-apputils is a build-time dependency
ENV.prepend_create_path "PYTHONPATH", buildpath/"homebrew/lib/python2.7/site-packages"
%w[six python-dateutil pytz python-gflags google-apputils].each do |package|
resource(package).stage do
system "python", *Language::Python.setup_install_args(buildpath/"homebrew")
end
end
# google is a namespace package and .pth files aren't processed from
# PYTHONPATH
touch buildpath/"homebrew/lib/python2.7/site-packages/google/__init__.py"
chdir "python" do
ENV.append_to_cflags "-I#{include}"
ENV.append_to_cflags "-L#{lib}"
args = Language::Python.setup_install_args prefix
args << "--cpp_implementation"
system "python", *args
end
end
end
test do
testdata = if devel?
<<-EOS.undent
syntax = "proto3";
package test;
message TestCase {
optional string name = 4;
}
message Test {
repeated TestCase case = 1;
}
EOS
else
<<-EOS.undent
package test;
message TestCase {
required string name = 4;
}
message Test {
repeated TestCase case = 1;
}
EOS
end
(testpath/"test.proto").write(testdata)
system bin/"protoc", "test.proto", "--cpp_out=."
end
def caveats; <<-EOS.undent
Editor support and examples have been installed to:
#{doc}
EOS
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment