homebrew-core/Formula/storm.rb

15 lines
439 B
Ruby

require 'formula'
class Storm < Formula
homepage 'https://storm.incubator.apache.org'
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'
head 'https://github.com/apache/incubator-storm.git'
def install
libexec.install Dir['*']
bin.install_symlink libexec/"bin/storm"
end
end