diff options
| author | Brett Koonce | 2014-05-19 22:54:20 -0700 |
|---|---|---|
| committer | Brett Koonce | 2014-05-20 00:04:34 -0700 |
| commit | f63ea6842671369b8cf2e088b769f123c8ae5eaf (patch) | |
| tree | c7f54cc21667164106e15b6b14c464a601ec9129 | |
| parent | e424ed3c7256fef3e7572d885ad99820fec53a74 (diff) | |
| download | homebrew-f63ea6842671369b8cf2e088b769f123c8ae5eaf.tar.bz2 | |
rabbitmq-c: rabbitmq-codegen 3.3.1
| -rw-r--r-- | Library/Formula/rabbitmq-c.rb | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/Library/Formula/rabbitmq-c.rb b/Library/Formula/rabbitmq-c.rb index fbf2ee88f..9d3bf3242 100644 --- a/Library/Formula/rabbitmq-c.rb +++ b/Library/Formula/rabbitmq-c.rb @@ -1,29 +1,29 @@ -require 'formula' +require "formula" class RabbitmqC < Formula - homepage 'https://github.com/alanxz/rabbitmq-c' - url 'https://github.com/alanxz/rabbitmq-c/archive/v0.5.0.tar.gz' - sha1 '826286c3f04695bdc231d8e7b0541f871975cdcc' + homepage "https://github.com/alanxz/rabbitmq-c" + url "https://github.com/alanxz/rabbitmq-c/archive/v0.5.0.tar.gz" + sha1 "826286c3f04695bdc231d8e7b0541f871975cdcc" - head 'https://github.com/alanxz/rabbitmq-c.git' + head "https://github.com/alanxz/rabbitmq-c.git" option :universal - depends_on 'pkg-config' => :build - depends_on 'autoconf' => :build - depends_on 'automake' => :build - depends_on 'libtool' => :build - depends_on 'rabbitmq' - depends_on 'simplejson' => :python if MacOS.version <= :leopard + depends_on "pkg-config" => :build + depends_on "autoconf" => :build + depends_on "automake" => :build + depends_on "libtool" => :build + depends_on "rabbitmq" + depends_on "simplejson" => :python if MacOS.version <= :leopard - resource 'codegen' do - url 'https://github.com/rabbitmq/rabbitmq-codegen/archive/rabbitmq_v3_3_0.tar.gz' - sha1 '8a5fd687faae669f3715ea44aaeaf53b8743a340' + resource "codegen" do + url "https://github.com/rabbitmq/rabbitmq-codegen/archive/rabbitmq_v3_3_1.tar.gz" + sha1 "62cfff4d3d3707b263a4e1b0d5d3b094e39d24f1" end def install ENV.universal_binary if build.universal? - (buildpath/'codegen').install resource('codegen') + (buildpath/"codegen").install resource("codegen") system "autoreconf", "-i" system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking" system "make install" |
