diff options
| author | Jonathan Ragan-Kelley | 2011-10-14 11:46:46 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2012-04-29 09:01:25 -0700 |
| commit | d5a1c21ed07213a21cd6f24c4796005d64c11091 (patch) | |
| tree | 0574f968a0c68a3d9ffdec731e391032843e4c59 /Library | |
| parent | 0d781148733caa5dd01a8a0990794187bbf9959b (diff) | |
| download | homebrew-d5a1c21ed07213a21cd6f24c4796005d64c11091.tar.bz2 | |
ispc 1.2.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/ispc.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/ispc.rb b/Library/Formula/ispc.rb new file mode 100644 index 000000000..07a121774 --- /dev/null +++ b/Library/Formula/ispc.rb @@ -0,0 +1,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 |
