4d40d8800a
Version bump. Closes Homebrew/homebrew#33752 Closes Homebrew/homebrew#33768.
15 lines
313 B
Ruby
15 lines
313 B
Ruby
require "formula"
|
|
|
|
class Ispc < Formula
|
|
homepage "https://ispc.github.io"
|
|
url "https://downloads.sourceforge.net/project/ispcmirror/v1.8.0/ispc-v1.8.0-osx.tar.gz"
|
|
sha1 "e645860d2167daa2ffb2fa0cba17df156e1136fc"
|
|
|
|
def install
|
|
bin.install "ispc"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/ispc", "-v"
|
|
end
|
|
end
|