2012-04-10 15:50:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Storm < Formula
|
2014-04-04 03:20:54 +00:00
|
|
|
homepage 'https://storm.incubator.apache.org'
|
2014-03-19 00:31:50 +00:00
|
|
|
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'
|
2014-04-04 03:20:54 +00:00
|
|
|
head 'https://github.com/apache/incubator-storm.git'
|
2012-04-10 15:50:49 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install Dir['*']
|
2012-07-07 02:49:51 +00:00
|
|
|
bin.install_symlink libexec/"bin/storm"
|
2012-04-10 15:50:49 +00:00
|
|
|
end
|
|
|
|
end
|