From ee3e6804274ad559b7e77d08c80ea07e22e6f6da Mon Sep 17 00:00:00 2001 From: Jonathan Ragan-Kelley Date: Fri, 14 Oct 2011 11:46:46 -0400 Subject: [PATCH] ispc 1.2.2 Signed-off-by: Adam Vandenberg --- Formula/ispc.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Formula/ispc.rb diff --git a/Formula/ispc.rb b/Formula/ispc.rb new file mode 100644 index 00000000000..07a121774ba --- /dev/null +++ b/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