homebrew-core/Formula/ispc.rb
Michael Fogleman 01b1f5a92f ispc 1.9.1
Update ispc formula to v1.9.1

Closes #3775.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-08-12 01:23:59 +01: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.1/ispc-v1.9.1-osx.tar.gz"
sha256 "ee949fcdf37ad3e3c0b946e6d6e32d7a7eafcec43e2cb908aea7e58e78bb0f55"
bottle :unneeded
def install
bin.install "ispc"
end
test do
system "#{bin}/ispc", "-v"
end
end