homebrew-core/Formula/ispc.rb
Atulit Kumar 4f512540b4 ispc 1.8.2
Version bump for ISPC from v1.8.0 to v1.8.2

Closes Homebrew/homebrew#44550.

Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
2015-10-03 08:03:03 -07:00

14 lines
370 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.8.2/ispc-v1.8.2-osx.tar.gz"
sha256 "9e42d7cca73e598d26727e4e5ab2f8b8e24d009fcb64424e566fa0f45329c2ec"
def install
bin.install "ispc"
end
test do
system "#{bin}/ispc", "-v"
end
end