blob: 815194f3712c6d51252f52282a2b0c7b713013d7 (
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.5.0/ispc-v1.5.0-osx.tar.gz'
sha1 'dc03fcc523ccab31a16ad4db1d9f8c755b4fcd38'
def install
bin.install 'ispc'
end
def test
system "#{bin}/ispc", "-v"
end
end
|