2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2010-04-07 05:58:35 +00:00
|
|
|
|
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/'
|
2013-03-04 21:15:59 +00:00
|
|
|
url 'http://protobuf.googlecode.com/files/protobuf-2.5.0.tar.bz2'
|
|
|
|
sha1 '62c10dcdac4b69cc8c6bb19f73db40c264cb2726'
|
2011-03-26 06:25:28 +00:00
|
|
|
|
2012-08-12 17:58:48 +00:00
|
|
|
option :universal
|
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2334
|
|
|
|
end
|
2010-04-07 05:58:35 +00:00
|
|
|
|
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/mxcl/homebrew/issues/9279
|
|
|
|
# http://code.google.com/p/protobuf/source/browse/trunk/configure.ac#61
|
|
|
|
ENV.prepend 'CXXFLAGS', '-DNDEBUG'
|
2012-08-12 17:58:48 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2010-04-07 05:58:35 +00:00
|
|
|
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"
|
2011-12-06 22:02:19 +00:00
|
|
|
|
|
|
|
# Install editor support and examples
|
|
|
|
doc.install %w( editors examples )
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
Editor support and examples have been installed to:
|
2013-03-16 18:31:27 +00:00
|
|
|
#{doc}
|
2011-12-06 22:02:19 +00:00
|
|
|
EOS
|
2009-09-21 19:24:04 +00:00
|
|
|
end
|
2011-03-10 05:11:03 +00:00
|
|
|
end
|