homebrew-core/Formula/ispc.rb
ilovezfs 247914af40
ispc 1.9.2
Closes #20787.

Signed-off-by: William Woodruff <william@tuffbizz.com>
2017-11-18 17:34:33 -05:00

16 lines
390 B
Ruby

class Ispc < Formula
desc "Compiler for SIMD programming on the CPU"
homepage "https://ispc.github.io"
url "https://downloads.sourceforge.net/project/ispcmirror/v1.9.2/ispc-v1.9.2-osx.tar.gz"
sha256 "aa307b97bea67d71aff046e3f69c0412cc950eda668a225e6b909dba752ef281"
bottle :unneeded
def install
bin.install "ispc"
end
test do
system "#{bin}/ispc", "-v"
end
end