blob: b712bd40fe85205181b471aef110bba3a01d4c29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
require 'formula'
class Rabbitmq <Formula
homepage 'http://rabbitmq.com'
url 'http://mirror.rabbitmq.com/releases/rabbitmq-server/v2.0.0/rabbitmq-server-2.0.0.tar.gz'
md5 '04b99018085d4156b404d56377fc1c62'
depends_on 'erlang'
depends_on 'simplejson' => :python if MACOS_VERSION < 10.6
def patches
# Can't build manpages without a lot of other junk, so disable
DATA
end
def install
target_dir = "#{lib}/rabbitmq/erlang/lib/rabbitmq-#{version}"
system "make"
ENV['TARGET_DIR'] = target_dir
ENV['MAN_DIR'] = man
ENV['SBIN_DIR'] = sbin
system "make install"
(etc+'rabbitmq').mkpath
(var+'lib/rabbitmq').mkpath
(var+'log/rabbitmq').mkpath
%w{rabbitmq-server rabbitmq-multi rabbitmqctl rabbitmq-env}.each do |script|
inreplace sbin+script do |s|
s.gsub! '/etc/rabbitmq', "#{etc}/rabbitmq"
s.gsub! '/var/lib/rabbitmq', "#{var}/lib/rabbitmq"
s.gsub! '/var/log/rabbitmq', "#{var}/log/rabbitmq"
end
end
# RabbitMQ Erlang binaries are installed in lib/rabbitmq/erlang/lib/rabbitmq-x.y.z/ebin
# therefore need to add this path for erl -pa
inreplace sbin+'rabbitmq-env', '${SCRIPT_DIR}/..', target_dir
end
end
__END__
diff --git a/Makefile b/Makefile
index 46b1842..82d71a0 100644
--- a/Makefile
+++ b/Makefile
@@ -265,7 +265,7 @@ $(SOURCE_DIR)/%_usage.erl:
docs_all: $(MANPAGES) $(WEB_MANPAGES)
-install: all docs_all install_dirs
+install: all install_dirs
cp -r ebin include LICENSE LICENSE-MPL-RabbitMQ INSTALL $(TARGET_DIR)
chmod 0755 scripts/*
@@ -273,12 +273,6 @@ install: all docs_all install_dirs
cp scripts/$$script $(TARGET_DIR)/sbin; \
[ -e $(SBIN_DIR)/$$script ] || ln -s $(SCRIPTS_REL_PATH)/$$script $(SBIN_DIR)/$$script; \
done
- for section in 1 5; do \
- mkdir -p $(MAN_DIR)/man$$section; \
- for manpage in $(DOCS_DIR)/*.$$section.gz; do \
- cp $$manpage $(MAN_DIR)/man$$section; \
- done; \
- done
mkdir -p $(TARGET_DIR)/plugins
echo Put your .ez plugin files in this directory. > $(TARGET_DIR)/plugins/README
|