ispc 1.2.2

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Jonathan Ragan-Kelley 2011-10-14 11:46:46 -04:00 committed by Adam Vandenberg
parent 5dd46942c5
commit ee3e680427
1 changed files with 16 additions and 0 deletions

16
Formula/ispc.rb Normal file
View File

@ -0,0 +1,16 @@
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