e26867087a
Closes #43453. Signed-off-by: FX Coudert <fxcoudert@gmail.com>
19 lines
552 B
Ruby
19 lines
552 B
Ruby
class Storm < Formula
|
|
desc "Distributed realtime computation system to process data streams"
|
|
homepage "https://storm.apache.org"
|
|
url "https://www.apache.org/dyn/closer.cgi?path=storm/apache-storm-1.2.3/apache-storm-1.2.3.tar.gz"
|
|
sha256 "d45322253db06353a521284f31b30bd964dab859f3a279a305bd79112803425a"
|
|
|
|
bottle :unneeded
|
|
|
|
conflicts_with "stormssh", :because => "both install 'storm' binary"
|
|
|
|
def install
|
|
libexec.install Dir["*"]
|
|
bin.install_symlink libexec/"bin/storm"
|
|
end
|
|
|
|
test do
|
|
system bin/"storm", "version"
|
|
end
|
|
end
|