aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ispc.rb
blob: e8729c0bd34b08d46e8ab6e80e839d0c3c897f26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Ispc < Formula
  homepage 'http://ispc.github.com'
  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