homebrew-core/Formula/ispc.rb
Mike Naberezny f694213654 Update GitHub Pages links that are now 301 redirects
Closes Homebrew/homebrew#26527.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-08 09:54:18 -08:00

15 lines
312 B
Ruby

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