homebrew-core/Formula/protobuf-c.rb

16 lines
431 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class ProtobufC < Formula
url 'http://protobuf-c.googlecode.com/files/protobuf-c-0.15.tar.gz'
homepage 'http://code.google.com/p/protobuf-c/'
sha1 '4fbd93f492c52154713de1951c0a2133ddd43abb'
depends_on 'protobuf'
def install
2010-09-09 15:38:05 +00:00
ENV.j1 # Fixed in a post-0.14 change
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end