aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/spark.rb
blob: d4f70d80b2fbb594d025c4aa20431de566cc9eeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Spark < Formula
  homepage 'http://zachholman.com/spark/'
  url 'https://github.com/holman/spark/archive/v1.0.1.tar.gz'
  sha1 '11c6a0c5e52720a1282c5da5019432c33dcf9403'

  def install
    bin.install "spark"
  end

  test do
    system "#{bin}/spark"
  end
end