mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
26 lines
786 B
Ruby
26 lines
786 B
Ruby
cask "waterfox" do
|
|
version "6.0.6"
|
|
sha256 "af2744ca8ec96f7b1bd4ea5fac40ce28ddfbca159fb8ab073775f1ce4d9d3f71"
|
|
|
|
url "https://cdn1.waterfox.net/waterfox/releases/G#{version}/Darwin_x86_64-aarch64/Waterfox%20G#{version}.dmg"
|
|
name "Waterfox"
|
|
desc "Web browser"
|
|
homepage "https://www.waterfox.net/"
|
|
|
|
livecheck do
|
|
url "https://cdn1.waterfox.net/waterfox/releases/latest/macos"
|
|
strategy :header_match
|
|
end
|
|
|
|
depends_on macos: ">= :sierra"
|
|
|
|
app "Waterfox.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/org.mozilla.waterfox.sfl*",
|
|
"~/Library/Application Support/Waterfox",
|
|
"~/Library/Caches/Waterfox",
|
|
"~/Library/Preferences/org.waterfoxproject.waterfox.plist",
|
|
]
|
|
end
|