homebrew-core/Formula/ispc.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

15 lines
312 B
Ruby

require 'formula'
class Ispc < Formula
homepage 'http://ispc.github.io'
url 'https://downloads.sourceforge.net/project/ispcmirror/v1.6.0/ispc-v1.6.0-osx.tar.gz'
sha1 'cea50303a6bfcb213a485ada1337aa4b25807cb8'
def install
bin.install 'ispc'
end
test do
system "#{bin}/ispc", "-v"
end
end