homebrew-cask/Casks/superduper.rb

35 lines
1.1 KiB
Ruby

cask "superduper" do
version "3.5,122"
sha256 :no_check
url "https://shirtpocket.s3.amazonaws.com/SuperDuper/SuperDuper!.dmg",
verified: "shirtpocket.s3.amazonaws.com/SuperDuper/"
name "SuperDuper!"
desc "Backup, recovery and cloning software"
homepage "https://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html"
livecheck do
url "https://s3.amazonaws.com/shirtpocket/SuperDuper/superduperinfo.rtf"
strategy :page_match do |page|
match = page.match(/SuperDuper!\s*v?(\d+(?:\.\d+)+)\s*\(v(\d+)\)/i)
next if match.blank?
"#{match[1]},#{match[2]}"
end
end
auto_updates true
app "SuperDuper!.app"
zap trash: [
"~/Library/Application Support/SuperDuper!",
"~/Library/Caches/com.blacey.SuperDuper",
"~/Library/Preferences/com.blacey.SuperDuper.plist",
"~/Library/Preferences/com.paradigmasoft.vstudio.plist",
"~/Library/Preferences/com.paradigmasoft.VStudio",
"~/Library/Saved Application State/com.blacey.SuperDuper.savedState",
"~/Library/Services/Run SuperDuper! Settings.workflow",
]
end