homebrew-core/Formula/storm.rb
Thierry Moisan f45d6ac0a1 storm: add conflict_with stormssh
Closes Homebrew/homebrew#45298.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-10-26 19:00:07 +00: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-0.9.5/apache-storm-0.9.5.tar.gz"
sha256 "2e8337126de8d1e180abe77fb81af7c971f8c4b2dad94e446ac86c0f02ba3fb2"
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