homebrew-core/Formula/protobuf.rb

52 lines
1.4 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Protobuf < Formula
2010-01-31 03:16:52 +00:00
homepage 'http://code.google.com/p/protobuf/'
url 'http://protobuf.googlecode.com/files/protobuf-2.5.0.tar.bz2'
sha1 '62c10dcdac4b69cc8c6bb19f73db40c264cb2726'
2011-03-26 06:25:28 +00:00
option :universal
option :cxx11
depends_on :python => :optional
fails_with :llvm do
build 2334
end
2009-09-21 19:24:04 +00:00
def install
2012-01-29 05:19:48 +00:00
# Don't build in debug mode. See:
# https://github.com/Homebrew/homebrew/issues/9279
2012-01-29 05:19:48 +00:00
# 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?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
2010-01-31 03:16:52 +00:00
"--with-zlib"
system "make"
2009-09-21 19:24:04 +00:00
system "make install"
# Install editor support and examples
doc.install %w( editors examples )
if build.with? 'python'
2014-01-04 13:13:01 +00:00
chdir 'python' do
ENV['PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION'] = 'cpp'
ENV.append_to_cflags "-I#{include}"
ENV.append_to_cflags "-L#{lib}"
system 'python', 'setup.py', 'build'
system 'python', 'setup.py', 'install', "--prefix=#{prefix}",
'--single-version-externally-managed', '--record=installed.txt'
end
end
end
def caveats; <<-EOS.undent
Editor support and examples have been installed to:
#{doc}
EOS
2009-09-21 19:24:04 +00:00
end
2011-03-10 05:11:03 +00:00
end