mirror of
https://github.com/exituser/Pearcleaner.git
synced 2026-09-17 07:19:04 +00:00
25 lines
682 B
Ruby
25 lines
682 B
Ruby
cask "pearcleaner" do
|
|
#version :latest
|
|
version "2.3"
|
|
sha256 :no_check
|
|
|
|
# Latest
|
|
#url "https://github.com/alienator88/Pearcleaner/releases/#{version}/download/Pearcleaner.zip"
|
|
# Version
|
|
url "https://github.com/alienator88/Pearcleaner/releases/download/#{version}/Pearcleaner.zip"
|
|
name "Pearcleaner"
|
|
desc "Utility to uninstall apps and clean-up leftover files"
|
|
homepage "https://github.com/alienator88/Pearcleaner"
|
|
|
|
depends_on macos: ">= :ventura"
|
|
|
|
app "Pearcleaner.app"
|
|
|
|
uninstall quit: "com.alienator88.Pearcleaner",
|
|
launchctl: "com.alienator88.PearcleanerSentinel"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Pearcleaner",
|
|
]
|
|
end
|