phinze/homebrew-cask

View on GitHub
Casks/f/finalshell.rb

Summary

Maintainability
A
0 mins
Test Coverage
cask "finalshell" do
  arch arm: "arm64", intel: "x64"

  version "4.5.6"
  sha256 :no_check

  url "http://www.hostbuf.com/downloads/finalshell_macos_#{arch}.pkg"
  name "FinalShell"
  desc "SSH tool, server management and remote desktop acceleration software"
  homepage "https://www.hostbuf.com/"

  livecheck do
    url "https://www.hostbuf.com/t/989.html"
    regex(/版本号(\d+(?:\.\d+)+)/i)
  end

  depends_on macos: ">= :el_capitan"

  pkg "finalshell_macos_#{arch}.pkg"

  uninstall quit:    "finalshellinstall.all",
            pkgutil: [
              "finalshellinstall.all",
              "st",
            ],
            delete:  "/Applications/FinalShell.app"

  zap trash: [
    "~/fsdownload",
    "~/Library/FinalShell",
    "~/Library/Saved Application State/myssh.savedState",
  ]
end