aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/storm.rb
blob: 8fd8467718f24668178026093f814169d9f58f3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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