mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
29 lines
899 B
Ruby
29 lines
899 B
Ruby
cask "mountain-duck" do
|
|
version "4.15.1,21679"
|
|
sha256 "664f4e987580c31050af45209b194fee4d649152298b264683474721111020c4"
|
|
|
|
url "https://dist.mountainduck.io/Mountain%20Duck-#{version.csv.first}.#{version.csv.second}.zip"
|
|
name "Mountain Duck"
|
|
desc "Mounts servers and cloud storages as a disk on the desktop"
|
|
homepage "https://mountainduck.io/"
|
|
|
|
livecheck do
|
|
url "https://version.mountainduck.io/#{version.major}/macos/changelog.rss"
|
|
strategy :sparkle
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "Mountain Duck.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/io.mountainduck.findersync",
|
|
"~/Library/Caches/io.mountainduck",
|
|
"~/Library/Containers/io.mountainduck.findersync",
|
|
"~/Library/Group Containers/G69SCX94XU.duck",
|
|
"~/Library/Preferences/G69SCX94XU.duck.plist",
|
|
"~/Library/Preferences/io.mountainduck.plist",
|
|
]
|
|
end
|