blob: 94a86a8d14d89f3fbffd8e6bdb5287ae536387d2 (
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.4.4/ispc-v1.4.4-osx.tar.gz'
  sha1 '3db292eb38cb1651f1448cfa72541484f4be878a'
  def install
    bin.install 'ispc'
  end
  def test
    system "#{bin}/ispc", "-v"
  end
end
  |