homebrew-core/Formula/putty.rb

26 lines
736 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Putty < Formula
homepage 'http://www.chiark.greenend.org.uk/~sgtatham/putty/'
2013-08-13 04:28:49 +00:00
url 'http://the.earth.li/~sgtatham/putty/0.63/putty-0.63.tar.gz'
sha1 '195c0603ef61082b91276faa8d4246ea472bba3b'
2013-02-10 05:53:28 +00:00
depends_on 'pkg-config' => :build
depends_on 'gtk+' => :optional
def install
2012-03-11 21:51:23 +00:00
cd "unix" do
system "./configure", "--prefix=#{prefix}", "--disable-gtktest"
2013-08-13 04:28:49 +00:00
system "make", "VER=-DRELEASE=#{version}"
bin.install %w{ putty puttytel pterm } if build.with? 'gtk+'
2012-03-11 21:51:23 +00:00
bin.install %w{ plink pscp psftp puttygen }
end
2012-03-11 21:51:23 +00:00
cd "doc" do
man1.install %w{ putty.1 puttytel.1 pterm.1 } if build.with? 'gtk+'
2012-03-11 21:51:23 +00:00
man1.install %w{ plink.1 pscp.1 psftp.1 puttygen.1 }
end
end
end