945223cffe
The caveats for the current formula list /usr/local/Cellar/protobuf/2.5.0/share/doc/protobuf/protobuf as the directory containing examples and editor support. The proper directory is /usr/local/Cellar/protobuf/2.5.0/share/doc/protobuf Closes Homebrew/homebrew#18521. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
35 lines
954 B
Ruby
35 lines
954 B
Ruby
require 'formula'
|
|
|
|
class Protobuf < Formula
|
|
homepage 'http://code.google.com/p/protobuf/'
|
|
url 'http://protobuf.googlecode.com/files/protobuf-2.5.0.tar.bz2'
|
|
sha1 '62c10dcdac4b69cc8c6bb19f73db40c264cb2726'
|
|
|
|
option :universal
|
|
|
|
fails_with :llvm do
|
|
build 2334
|
|
end
|
|
|
|
def install
|
|
# 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'
|
|
ENV.universal_binary if build.universal?
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--with-zlib"
|
|
system "make"
|
|
system "make install"
|
|
|
|
# Install editor support and examples
|
|
doc.install %w( editors examples )
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Editor support and examples have been installed to:
|
|
#{doc}
|
|
EOS
|
|
end
|
|
end
|