aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/protobuf-c.rb
blob: 2904820de2c73d790d6d42bd56f2c60f71cbe056 (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.14.tar.gz'
  homepage 'http://code.google.com/p/protobuf-c/'
  sha1 'b3af990906d8a8d86e2fb8cb6f39d0a37616ff8a'

  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