2011-10-14 15:46:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ispc < Formula
|
2014-02-08 17:50:45 +00:00
|
|
|
homepage 'http://ispc.github.io'
|
2014-01-16 06:50:55 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/ispcmirror/v1.6.0/ispc-v1.6.0-osx.tar.gz'
|
|
|
|
sha1 'cea50303a6bfcb213a485ada1337aa4b25807cb8'
|
2011-10-14 15:46:46 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install 'ispc'
|
|
|
|
end
|
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/ispc", "-v"
|
2011-10-14 15:46:46 +00:00
|
|
|
end
|
|
|
|
end
|