37952ae021
Storm 0.10.0 See the following blog posts for information about this release: - <http://storm.apache.org/2015/11/05/storm0100-released.html> - <http://storm.apache.org/2015/06/15/storm0100-beta-released.html> Closes Homebrew/homebrew#46674. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
19 lines
554 B
Ruby
19 lines
554 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-0.10.0/apache-storm-0.10.0.tar.gz"
|
|
sha256 "066d1f5343333efd9187d7b850047cf9b3f63d885811e9fdd6e50f949b432f62"
|
|
|
|
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
|