aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/putty.rb
blob: cf8d7c17822c2290ff0308c9a13cc973085d318f (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
require 'formula'

class Putty < Formula
  homepage 'http://www.chiark.greenend.org.uk/~sgtatham/putty/'
  head 'svn://svn.tartarus.org/sgt/putty'
  url 'http://the.earth.li/~sgtatham/putty/0.63/putty-0.63.tar.gz'
  sha1 '195c0603ef61082b91276faa8d4246ea472bba3b'

  depends_on 'pkg-config' => :build
  depends_on 'gtk+' => :optional

  if build.head?
    depends_on "halibut" => :build
    depends_on :automake
    depends_on :autoconf
  end

  def install

    if build.head?
      system "./mkfiles.pl"
      system "./mkauto.sh"

      cd "doc" do
        system "make"
      end
    end

    system "./configure", "--prefix=#{prefix}", "--disable-gtktest"

    build_version = build.head? ? "svn-#{version}" : version
    system "make", "VER=-DRELEASE=#{build_version}"

    bin.install %w{ putty puttytel pterm } if build.with? 'gtk+'
    bin.install %w{ plink pscp psftp puttygen }

    cd "doc" do
      man1.install %w{ putty.1 puttytel.1 pterm.1 } if build.with? 'gtk+'
      man1.install %w{ plink.1 pscp.1 psftp.1 puttygen.1 }
    end
  end
end