2011-10-14 15:46:46 +00:00
|
|
|
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
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/ispc", "-v"
|
2011-10-14 15:46:46 +00:00
|
|
|
end
|
|
|
|
end
|