homebrew-core/Formula/storm.rb
Toshiki Takeuchi eab177520d storm 1.0.0
Closes #593.

Signed-off-by: Martin Afanasjew <martin@afanasjew.de>
2016-04-25 14:59:04 +02:00

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.0.0/apache-storm-1.0.0.tar.gz"
sha256 "8233dab1a6898fc39bcf9fe68dfadbee38159a39c473ac2da9ce9da60db52066"
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