homebrew-core/Formula/ispc.rb

15 lines
370 B
Ruby
Raw Normal View History

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
2014-05-18 17:59:41 +00:00
bin.install "ispc"
end
test do
system "#{bin}/ispc", "-v"
end
end