mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
25 lines
614 B
Ruby
25 lines
614 B
Ruby
cask "rsyncui" do
|
|
version "1.7.5"
|
|
sha256 "6571efb5c6dc72dff8dd769b96de6ce879e311c217cab8c1838d0f851b5380c5"
|
|
|
|
url "https://github.com/rsyncOSX/RsyncUI/releases/download/v#{version}/RsyncUI.#{version}.dmg"
|
|
name "RsyncUI"
|
|
desc "GUI for rsync"
|
|
homepage "https://github.com/rsyncOSX/RsyncUI"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
depends_on macos: ">= :monterey"
|
|
|
|
app "RsyncUI.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Caches/no.blogspot.RsyncUI",
|
|
"~/Library/Preferences/no.blogspot.RsyncUI.plist",
|
|
"~/Library/Saved Application State/no.blogspot.RsyncUI.savedState",
|
|
]
|
|
end
|