mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
40 lines
1.3 KiB
Ruby
40 lines
1.3 KiB
Ruby
cask "charles" do
|
|
version "4.6.5"
|
|
sha256 "2864867ec2e9d9ce229aba45ac6117ec74accf4d42c4c2bafb5f5eae399d6ba0"
|
|
|
|
url "https://www.charlesproxy.com/assets/release/#{version}/charles-proxy-#{version}.dmg"
|
|
name "Charles"
|
|
desc "Web debugging Proxy application"
|
|
homepage "https://www.charlesproxy.com/"
|
|
|
|
livecheck do
|
|
url "https://www.charlesproxy.com/latest.do"
|
|
regex(/v?(\d+(?:\.\d+)+)/i)
|
|
end
|
|
|
|
app "Charles.app"
|
|
|
|
uninstall_postflight do
|
|
stdout, * = system_command "/usr/bin/security",
|
|
args: ["find-certificate", "-a", "-c", "Charles", "-Z"],
|
|
sudo: true
|
|
hashes = stdout.lines.grep(/^SHA-256 hash:/) { |l| l.split(":").second.strip }
|
|
hashes.each do |h|
|
|
system_command "/usr/bin/security",
|
|
args: ["delete-certificate", "-Z", h],
|
|
sudo: true
|
|
end
|
|
end
|
|
|
|
uninstall quit: "com.xk72.Charles",
|
|
launchctl: "com.xk72.Charles.ProxyHelper",
|
|
delete: "/Library/PrivilegedHelperTools/com.xk72.Charles.ProxyHelper"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Charles",
|
|
"~/Library/Preferences/com.xk72.Charles.plist",
|
|
"~/Library/Preferences/com.xk72.charles.config",
|
|
"~/Library/Saved Application State/com.xk72.Charles.savedState",
|
|
]
|
|
end
|