aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/storm.rb
blob: 626c92892e8934dae8bf3e0cec524c2c56c30d44 (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://github.com/downloads/nathanmarz/storm/storm-0.8.1.zip'
  sha1 'ce5f5dad82f33b7189ce975e0741d1c57007ed0e'

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