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'
|
2013-05-31 15:44:01 +00:00
|
|
|
url 'http://spinroot.com/spin/Src/spin625.tar.gz'
|
|
|
|
version '6.2.5'
|
|
|
|
sha1 '6034126bccd7b08fc7ff06d81f69b5a0ada7644f'
|
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
|