aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/storm.rb
blob: 2c321972f22133cbd56f8795a008f017c151d06b (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 'https://dl.dropboxusercontent.com/s/dj86w8ojecgsam7/storm-0.9.0.1.zip'
  sha1 '230abcc15a9e1358442429fd1c856dc12a3be920'

  def install
    libexec.install Dir['*']
    bin.install_symlink libexec/"bin/storm"
  end
end