2010-03-06 19:12:57 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class ProtobufC < Formula
|
2014-07-27 02:10:37 +00:00
|
|
|
homepage 'https://github.com/protobuf-c/protobuf-c'
|
|
|
|
url 'https://github.com/protobuf-c/protobuf-c/releases/download/v1.0.0/protobuf-c-1.0.0.tar.gz'
|
|
|
|
sha1 '6d48eb6a193556262c35526e1ccf209a6fc69684'
|
2014-03-24 12:51:03 +00:00
|
|
|
|
2014-07-27 02:20:13 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "46572020e49936035b3f35194c40f98d90fd8dcd" => :mavericks
|
|
|
|
sha1 "5fe4ec31d10b064fc580ae5958873ca038083a80" => :mountain_lion
|
|
|
|
sha1 "64e31c97b2ef834d6406d128892575706b17cbad" => :lion
|
|
|
|
end
|
|
|
|
|
2014-07-27 02:10:37 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-03-06 19:12:57 +00:00
|
|
|
depends_on 'protobuf'
|
|
|
|
|
|
|
|
def install
|
2012-06-11 04:18:51 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
2010-03-06 19:12:57 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|