blob: 859d39d0c85804a993f9e9af8f1069a1897fbda4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class ProtobufC < Formula
homepage 'http://code.google.com/p/protobuf-c/'
url 'https://protobuf-c.googlecode.com/files/protobuf-c-0.15.tar.gz'
sha1 '4fbd93f492c52154713de1951c0a2133ddd43abb'
depends_on 'protobuf'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|