799a83c85a
Closes Homebrew/homebrew#16996. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
290 B
Ruby
15 lines
290 B
Ruby
require 'formula'
|
|
|
|
class Spark < Formula
|
|
url 'https://github.com/holman/spark/zipball/v1.0.1'
|
|
homepage 'http://zachholman.com/spark/'
|
|
sha1 'c44be4dee3b375ce2a33d096ff41ed3212eaa7ce'
|
|
|
|
def install
|
|
bin.install "spark"
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/spark"
|
|
end
|
|
end
|