blob: 7333cc232389be0b0f515714e6f4f75bb8f193bc (
plain)
1
2
3
4
5
6
7
8
9
10
|
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
|