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

class Ispc < Formula
  homepage 'http://ispc.github.com'
  url 'https://github.com/downloads/ispc/ispc/ispc-v1.2.2-osx.tar.gz'
  version '1.2.2'
  md5 '21f1fe1aabe47ae280e0dc92d50d564f'

  def install
    bin.install 'ispc'
  end

  def test
    system "#{bin}/ispc", "-v"
  end
end