blob: ea44ff3f4f736e8de0cb67b1ab322f677ee68954 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
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
ENV.j1 # Fixed in a post-0.14 change
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end
|