2009-12-09 19:14:23 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Spin < Formula
|
2009-12-09 19:14:23 +00:00
|
|
|
homepage 'http://spinroot.com/spin/whatispin.html'
|
2014-03-16 23:13:49 +00:00
|
|
|
url 'http://spinroot.com/spin/Src/spin627.tar.gz'
|
|
|
|
version '6.2.7'
|
|
|
|
sha1 '26969c8aa6ad46df1ce38b5c239d26553817da36'
|
2009-12-09 19:14:23 +00:00
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2334
|
|
|
|
end
|
2011-03-21 21:24:22 +00:00
|
|
|
|
2009-12-09 19:14:23 +00:00
|
|
|
def install
|
|
|
|
ENV.deparallelize
|
|
|
|
|
2013-04-14 01:28:21 +00:00
|
|
|
cd "Src#{version}" do
|
2009-12-09 19:14:23 +00:00
|
|
|
system "make"
|
|
|
|
bin.install "spin"
|
|
|
|
end
|
|
|
|
|
2013-04-14 01:28:21 +00:00
|
|
|
bin.install "iSpin/ispin.tcl" => "ispin"
|
2010-03-07 07:18:33 +00:00
|
|
|
man1.install "Man/spin.1"
|
2009-12-09 19:14:23 +00:00
|
|
|
end
|
|
|
|
end
|