homebrew-core/Formula/ispc.rb
Brett Koonce da95fddc49 ispc 1.3.0
Closes Homebrew/homebrew#13932.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-03 19:50:55 -07:00

16 lines
311 B
Ruby

require 'formula'
class Ispc < Formula
homepage 'http://ispc.github.com'
url 'https://github.com/downloads/ispc/ispc/ispc-v1.3.0-osx.tar.gz'
version '1.3.0'
sha1 'ec60f9e08405b6160b98aefd8cb4f9f7ee07c12e'
def install
bin.install 'ispc'
end
def test
system "#{bin}/ispc", "-v"
end
end