78045dab82
Closes Homebrew/homebrew#38201. Signed-off-by: Tim D. Smith <git@tim-smith.us>
10 lines
336 B
Ruby
10 lines
336 B
Ruby
class Storm < Formula
|
|
homepage "https://storm.apache.org"
|
|
url "https://www.apache.org/dyn/closer.cgi?path=storm/apache-storm-0.9.4/apache-storm-0.9.4.tar.gz"
|
|
sha256 "2cdb3530839375bb5f18751ff16ff78b11e9b4f6d23c423c95d78487ad92d38e"
|
|
|
|
def install
|
|
libexec.install Dir["*"]
|
|
bin.install_symlink libexec/"bin/storm"
|
|
end
|
|
end
|