aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/storm.rb
blob: 95710203cb2881e39afa280f1fc2d39732fd6bd9 (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.7.1.zip'
  md5 '83dc4d18439ab4e5da230e7e66f98a7a'

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