homebrew-core/Formula/storm.rb
2017-03-03 22:29:04 +01: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.3/apache-storm-1.0.3.tar.gz"
sha256 "db9f49aedb72c23c0281d19e4d829c83607d5c6d079135d9358a94f4fe3b43ef"
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