class Putty < Formula desc "Implementation of Telnet and SSH" homepage "http://www.chiark.greenend.org.uk/~sgtatham/putty/" url "https://the.earth.li/~sgtatham/putty/0.68/putty-0.68.tar.gz" mirror "https://fossies.org/linux/misc/putty-0.68.tar.gz" mirror "ftp://ftp.chiark.greenend.org.uk/users/sgtatham/putty-latest/putty-0.68.tar.gz" sha256 "7ba256f46e5a353cafe811ce7914d0e22a52bdfc0e6e2d183ad28b5af44cd09c" bottle do cellar :any_skip_relocation sha256 "881517dacc0811e26559359839e950a518865949a6c1439230d69d0ed525a91c" => :sierra sha256 "993674c05b05964831e82dbef97970190e538e0c70c3093643426f24147370e2" => :el_capitan sha256 "684b2c926949cc5bf02db806514380cd27576d81d9f432b3873da6448bd07c9d" => :yosemite end head do url "https://git.tartarus.org/simon/putty.git" depends_on "halibut" => :build depends_on "autoconf" => :build depends_on "automake" => :build depends_on "gtk+3" => :optional end depends_on "pkg-config" => :build conflicts_with "pssh", :because => "both install `pscp` binaries" def install if build.head? system "./mkfiles.pl" system "./mkauto.sh" system "make", "-C", "doc" end args = %W[ --prefix=#{prefix} --disable-silent-rules --disable-dependency-tracking --disable-gtktest ] if build.head? && build.with?("gtk+3") args << "--with-gtk=3" << "--with-quartz" else args << "--without-gtk" end system "./configure", *args build_version = build.head? ? "svn-#{version}" : version system "make", "VER=-DRELEASE=#{build_version}" bin.install %w[plink pscp psftp puttygen] bin.install %w[putty puttytel pterm] if build.head? && build.with?("gtk+3") cd "doc" do man1.install %w[plink.1 pscp.1 psftp.1 puttygen.1] man1.install %w[putty.1 puttytel.1 pterm.1] if build.head? && build.with?("gtk+3") end end test do (testpath/"command.sh").write <<-EOS.undent #!/usr/bin/expect -f set timeout -1 spawn #{bin}/puttygen -t rsa -b 4096 -q -o test.key expect -exact "Enter passphrase to save key: " send -- "Homebrew\n" expect -exact "\r Re-enter passphrase to verify: " send -- "Homebrew\n" expect eof EOS chmod 0755, testpath/"command.sh" system "./command.sh" assert File.exist?("test.key") end end