phinze/homebrew-cask

View on GitHub
Casks/f/fmail2.rb

Summary

Maintainability
A
0 mins
Test Coverage
cask "fmail2" do
  # NOTE: "2" is not a version number, but an intrinsic part of the product name
  version "2.7.1"
  sha256 "3e1e4228ae4142330e5289985dea1fa816f1bf26add2fe0b62edd7dfb6c6494c"

  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