-
Notifications
You must be signed in to change notification settings - Fork 2
/
hazelcast-5.2.rb
81 lines (76 loc) · 7.21 KB
/
hazelcast-5.2.rb
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
69
70
71
72
73
74
75
76
77
78
79
80
81
class Hazelcast52 < Formula
desc "Hazelcast is a streaming and memory-first application platform for fast, stateful, data-intensive workloads on-premises, at the edge or as a fully managed cloud service."
homepage "https://github.com/hazelcast/hazelcast-command-line"
url "https://repo.maven.apache.org/maven2/com/hazelcast/hazelcast-distribution/5.2.4/hazelcast-distribution-5.2.4.tar.gz"
sha256 "660c664c888e4e9b8eecdc756906f6178949fdf1b95c9da4795b9d7775e8dcea"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "hazelcast-enterprise", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "hazelcast-enterprise-snapshot", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "hazelcast-enterprise-5.2", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "hazelcast-enterprise-5.1", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "[email protected]", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "hazelcast-5.1", because: "you can install only a single hazelcast or hazelcast-enterprise package"
conflicts_with "hazelcast", because: "you can install only a single hazelcast or hazelcast-enterprise package"
depends_on "openjdk" => :recommended
def install
libexec.install Dir["*"]
Dir["#{libexec}/bin/hz*"].each do |path|
executable_name = File.basename(path)
if executable_name.end_with? ".bat"
next
end
(bin/executable_name).write_env_script libexec/"bin/#{executable_name}", Language::Java.overridable_java_home_env
end
etc.install "#{libexec}/config" => "hazelcast"
rm_rf libexec/"config"
libexec.install_symlink "#{etc}/hazelcast" => "config"
prefix.install_metafiles
inreplace libexec/"lib/hazelcast-download.properties", "hazelcastDownloadId=distribution", "hazelcastDownloadId=brew"
end
def caveats
<<~EOS
Configuration files have been placed in #{etc}/hazelcast.
EOS
end
def post_install
exec "echo Hazelcast has been installed."
end
end