diff options
| author | Michael S. Klishin | 2011-06-15 02:54:41 +0400 |
|---|---|---|
| committer | Adam Vandenberg | 2011-06-15 07:52:30 -0700 |
| commit | 08f7237400ed51aa0d96b25490f8e2f3ca2db8cd (patch) | |
| tree | 39dbef1391c819e6f65fe390133a24e6cf4a2d26 /Library | |
| parent | 57338d3c6763f2d0b5a91091baf973e407c35034 (diff) | |
| download | homebrew-08f7237400ed51aa0d96b25490f8e2f3ca2db8cd.tar.bz2 | |
RabbitMQ 2.5.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/rabbitmq.rb | 33 |
1 files changed, 6 insertions, 27 deletions
diff --git a/Library/Formula/rabbitmq.rb b/Library/Formula/rabbitmq.rb index 1488809b1..7c8dc3759 100644 --- a/Library/Formula/rabbitmq.rb +++ b/Library/Formula/rabbitmq.rb @@ -2,23 +2,17 @@ require 'formula' class Rabbitmq < Formula homepage 'http://rabbitmq.com' - url 'http://www.rabbitmq.com/releases/rabbitmq-server/v2.4.1/rabbitmq-server-2.4.1.tar.gz' - md5 '6db31b4353bd44f8ae9b6756b0a831e6' + + url 'http://www.rabbitmq.com/releases/rabbitmq-server/v2.5.0/rabbitmq-server-2.5.0.tar.gz' + md5 'b665ba003ab3f811b3053082fd006fa8' depends_on 'erlang' depends_on 'simplejson' => :python if MacOS.leopard? - def patches - # (1) Can't build manpages without a lot of other junk, so disable - # (2) Patch to build against Erlang R14B03 - http://old.nabble.com/RabbitMQ-and-Erlang-R14B03-td31699881.html - # Can be removed in next stable release. - [ - DATA, - "https://github.com/rabbitmq/rabbitmq-server/commit/3ab92151948c0c546cbefe5902efbd92acd14280.patch" - ] - end - def install + # Building the manual requires additional software, so skip it. + inreplace "Makefile", "install: install_bin install_docs", "install: install_bin" + target_dir = "#{lib}/rabbitmq/erlang/lib/rabbitmq-#{version}" system "make" ENV['TARGET_DIR'] = target_dir @@ -88,18 +82,3 @@ class Rabbitmq < Formula EOPLIST end end - -__END__ -diff --git a/Makefile b/Makefile -index d3f052f..98ce763 100644 ---- a/Makefile -+++ b/Makefile -@@ -267,7 +267,7 @@ $(SOURCE_DIR)/%_usage.erl: - - docs_all: $(MANPAGES) $(WEB_MANPAGES) - --install: install_bin install_docs -+install: install_bin - - install_bin: all install_dirs - cp -r ebin include LICENSE LICENSE-MPL-RabbitMQ INSTALL $(TARGET_DIR) |
