aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ispc.rb
blob: 07984e3c9beb1fa3ad6475bd2b27db87c41497b5 (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 'https://github.com/downloads/ispc/ispc/ispc-v1.3.0-osx.tar.gz'
  sha1 'ec60f9e08405b6160b98aefd8cb4f9f7ee07c12e'

  def install
    bin.install 'ispc'
  end

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