homebrew-core/Formula/protobuf.rb

23 lines
582 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Protobuf < Formula
2011-03-26 06:25:28 +00:00
url 'http://protobuf.googlecode.com/files/protobuf-2.4.0a.tar.bz2'
2010-01-31 03:16:52 +00:00
homepage 'http://code.google.com/p/protobuf/'
2011-03-26 06:25:28 +00:00
sha1 '5816b0dd686115c3d90c3beccf17fd89432d3f07'
fails_with_llvm
2011-04-21 16:34:47 +00:00
def options
[['--universal', 'Do a universal build']]
end
2009-09-21 19:24:04 +00:00
def install
2011-04-21 16:42:27 +00:00
ENV.universal_binary if ARGV.build_universal?
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"
end
2011-03-10 05:11:03 +00:00
end