blob: 3b5daacdadeae3ea8aafce8dddd6d7d0b30d95e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
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.2-incubating/apache-storm-0.9.2-incubating.zip'
  sha1 '92536843d76463974dd7bce4f8694fa6e462f0b6'
  def install
    libexec.install Dir['*']
    bin.install_symlink libexec/"bin/storm"
  end
end
  |