diff options
| author | Adam Vandenberg | 2013-08-12 21:28:49 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-08-12 21:28:49 -0700 | 
| commit | 8cb0da81983b5a902e05a74b506b2487339bcbb2 (patch) | |
| tree | f23fd337f03655453c0d1eb2fc36546ad2756caf | |
| parent | 08a61fcdbdc6c467921a3e3219eea79cb106130b (diff) | |
| download | homebrew-8cb0da81983b5a902e05a74b506b2487339bcbb2.tar.bz2 | |
putty 0.63
| -rw-r--r-- | Library/Formula/putty.rb | 7 | 
1 files changed, 3 insertions, 4 deletions
| diff --git a/Library/Formula/putty.rb b/Library/Formula/putty.rb index 9c807d72f..3fa5dc4ff 100644 --- a/Library/Formula/putty.rb +++ b/Library/Formula/putty.rb @@ -2,8 +2,8 @@ require 'formula'  class Putty < Formula    homepage 'http://www.chiark.greenend.org.uk/~sgtatham/putty/' -  url 'http://the.earth.li/~sgtatham/putty/0.62/putty-0.62.tar.gz' -  sha1 '5898438614117ee7e3704fc3f30a3c4bf2041380' +  url 'http://the.earth.li/~sgtatham/putty/0.63/putty-0.63.tar.gz' +  sha1 ''    depends_on 'pkg-config' => :build    depends_on 'gtk+' => :optional @@ -11,8 +11,7 @@ class Putty < Formula    def install      cd "unix" do        system "./configure", "--prefix=#{prefix}", "--disable-gtktest" -      system "make", "VER=-DRELEASE=#{version}", -                     (build.with?('gtk+') ? "all" : "all-cli") +      system "make", "VER=-DRELEASE=#{version}"        bin.install %w{ putty puttytel pterm } if build.with? 'gtk+'        bin.install %w{ plink pscp psftp puttygen } | 
