blob: f3de755e35e92d820b6d45db73383347b88b1166 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  | 
require 'formula'
class Spin < Formula
  homepage 'http://spinroot.com/spin/whatispin.html'
  url 'http://spinroot.com/spin/Src/spin625.tar.gz'
  version '6.2.5'
  sha1 '6034126bccd7b08fc7ff06d81f69b5a0ada7644f'
  fails_with :llvm do
    build 2334
  end
  def install
    ENV.deparallelize
    cd "Src#{version}" do
      system "make"
      bin.install "spin"
    end
    bin.install "iSpin/ispin.tcl" => "ispin"
    man1.install "Man/spin.1"
  end
end
  |