2011-10-14 15:46:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ispc < Formula
|
|
|
|
homepage 'http://ispc.github.com'
|
2013-10-19 18:13:12 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/ispcmirror/v1.5.0/ispc-v1.5.0-osx.tar.gz'
|
|
|
|
sha1 'dc03fcc523ccab31a16ad4db1d9f8c755b4fcd38'
|
2011-10-14 15:46:46 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install 'ispc'
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/ispc", "-v"
|
2011-10-14 15:46:46 +00:00
|
|
|
end
|
|
|
|
end
|