homebrew-core/Formula/ispc.rb
Jonathan Ragan-Kelley ee3e680427 ispc 1.2.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-29 09:01:25 -07:00

16 lines
299 B
Ruby

require 'formula'
class Ispc < Formula
homepage 'http://ispc.github.com'
url 'https://github.com/downloads/ispc/ispc/ispc-v1.2.2-osx.tar.gz'
version '1.2.2'
md5 '21f1fe1aabe47ae280e0dc92d50d564f'
def install
bin.install 'ispc'
end
def test
system "#{bin}/ispc -v"
end
end