mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
30 lines
965 B
Ruby
30 lines
965 B
Ruby
cask "mailbutler" do
|
|
version "7101,3111236"
|
|
sha256 "cbcc92f0a30721c8e629ab5e0f03fa86aabe5dd99d0ba482da47a2727b7ba2d2"
|
|
|
|
url "https://downloads.mailbutler.io/sparkle/public/Mailbutler_#{version.csv.first}-#{version.csv.second}.zip"
|
|
name "Mailbutler"
|
|
desc "Personal assistant and productivity tool for Apple Mail"
|
|
homepage "https://www.mailbutler.io/"
|
|
|
|
livecheck do
|
|
url "https://downloads.mailbutler.io/sparkle/public/appcast.xml"
|
|
strategy :sparkle
|
|
end
|
|
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "Mailbutler.app"
|
|
|
|
uninstall delete: "/Library/Mail/Bundles/Mailbutler.mailbundle"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.mailbutler.app",
|
|
"~/Library/Caches/com.mailbutler.app",
|
|
"~/Library/LaunchAgents/com.mailbutler.agent.plist",
|
|
"~/Library/Preferences/com.mailbutler.agent.plist",
|
|
"~/Library/Preferences/com.mailbutler.app.plist",
|
|
"~/Library/Saved Application State/com.mailbutler.app.savedState",
|
|
]
|
|
end
|