mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
27 lines
757 B
Ruby
27 lines
757 B
Ruby
cask "fmail2" do
|
|
# NOTE: "2" is not a version number, but an intrinsic part of the product name
|
|
version "2.5.3"
|
|
sha256 "99f1bb7f5fb6fb46f31ebd8b7b62aecd01d1cc9cd80d72961b8ec87c308c42d1"
|
|
|
|
url "https://arievanboxel.fr/fmail2/sparkle/FMail2_#{version.no_dots}.zip",
|
|
verified: "arievanboxel.fr/fmail2/sparkle/"
|
|
name "FMail2"
|
|
desc "Unofficial native application for Fastmail"
|
|
homepage "https://fmail-app.fr/"
|
|
|
|
livecheck do
|
|
url "https://arievanboxel.fr/fmail2/sparkle/appcast.xml"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :monterey"
|
|
|
|
app "FMail2.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/fr.arievanboxel.FMail2",
|
|
"~/Library/Containers/fr.arievanboxel.FMail2",
|
|
]
|
|
end
|