7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
16 lines
No EOL
463 B
Ruby
16 lines
No EOL
463 B
Ruby
require 'formula'
|
|
|
|
class Protobuf <Formula
|
|
url 'http://protobuf.googlecode.com/files/protobuf-2.3.0.tar.bz2'
|
|
sha1 'db0fbdc58be22a676335a37787178a4dfddf93c6'
|
|
homepage 'http://code.google.com/p/protobuf/'
|
|
|
|
def install
|
|
fails_with_llvm
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--with-zlib"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end |