From 22a66ac487a210ed12887c9867f091d0180e51f4 Mon Sep 17 00:00:00 2001 From: Nevil Macwan Date: Wed, 18 Mar 2026 15:02:07 +0530 Subject: [PATCH] Add Homebrew Cask formula for macSCP Enables installation via `brew install --cask macnev2013/macscp/macscp`. Tested locally against v0.2.6 DMG release. Co-Authored-By: Paperclip --- Casks/macscp.rb | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Casks/macscp.rb diff --git a/Casks/macscp.rb b/Casks/macscp.rb new file mode 100644 index 0000000..0792469 --- /dev/null +++ b/Casks/macscp.rb @@ -0,0 +1,24 @@ +cask "macscp" do + version "0.2.6" + sha256 "9bc8b75e3325c18190bb5902c6a7bae04fe9009d8eaf14c68420be09cbdcf1af" + + url "https://github.com/macnev2013/macSCP/releases/download/v#{version}/macSCP-#{version}.dmg" + name "macSCP" + desc "Native client for SFTP, S3, and SSH terminal" + homepage "https://www.macscp.co/" + + livecheck do + url :url + strategy :github_latest + end + + depends_on macos: ">= :sequoia" + + app "macSCP.app" + + zap trash: [ + "~/Library/Caches/com.macscp.macSCP", + "~/Library/Preferences/com.macscp.macSCP.plist", + "~/Library/Saved Application State/com.macscp.macSCP.savedState", + ] +end