homebrew-core/Formula/ispc.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

15 lines
311 B
Ruby

require 'formula'
class Ispc < Formula
homepage 'http://ispc.github.io'
url 'http://downloads.sourceforge.net/project/ispcmirror/v1.6.0/ispc-v1.6.0-osx.tar.gz'
sha1 'cea50303a6bfcb213a485ada1337aa4b25807cb8'
def install
bin.install 'ispc'
end
test do
system "#{bin}/ispc", "-v"
end
end