blob: 681f022cdb2ad6608238a64418405790291bd7ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Protobuf < Formula
url 'http://protobuf.googlecode.com/files/protobuf-2.4.0a.tar.bz2'
homepage 'http://code.google.com/p/protobuf/'
sha1 '5816b0dd686115c3d90c3beccf17fd89432d3f07'
fails_with_llvm
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-zlib"
system "make"
system "make install"
end
end
|