mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
31 lines
905 B
Ruby
31 lines
905 B
Ruby
cask "backuploupe" do
|
|
version "3.11"
|
|
sha256 "330d69bd3218e2c5ca299fc9f52eeef82292dd4913479969adcfbff5ee1355e0"
|
|
|
|
url "https://www.soma-zone.com/download/files/BackupLoupe-#{version}.tar.xz"
|
|
name "BackupLoupe"
|
|
desc "Alternative GUI for Time Machine"
|
|
homepage "https://www.soma-zone.com/BackupLoupe/"
|
|
|
|
livecheck do
|
|
url "https://www.soma-zone.com/BackupLoupe/a/appcast-update-#{version.major}.xml"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "BackupLoupe.app"
|
|
|
|
uninstall delete: [
|
|
"/Library/LaunchDaemons/com.soma-zone.BackupLoupe.Helper.plist",
|
|
"/Library/PrivilegedHelperTools/com.soma-zone.BackupLoupe.Helper",
|
|
]
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/BackupLoupe",
|
|
"~/Library/Caches/com.apple.helpd/Generated/BackupLoupe*",
|
|
"~/Library/Preferences/com.soma-zone.BackupLoupe.plist",
|
|
]
|
|
end
|