homebrew-core/Formula/storm.rb
Adrian Petrescu ddf7cf94f0 storm 0.9.1
Closes Homebrew/homebrew#27681.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-18 20:27:15 -07:00

13 lines
390 B
Ruby

require 'formula'
class Storm < Formula
homepage 'https://github.com/nathanmarz/storm/wiki'
url 'http://mirror.csclub.uwaterloo.ca/apache/incubator/storm/apache-storm-0.9.1-incubating/apache-storm-0.9.1-incubating.zip'
version '0.9.1'
sha1 '75f28e07fae2d21e427ba998b93069ef7dd3e184'
def install
libexec.install Dir['*']
bin.install_symlink libexec/"bin/storm"
end
end