mirror of
https://github.com/cinnyapp/cinny-desktop.git
synced 2025-01-16 03:15:13 +00:00
27 lines
695 B
Ruby
27 lines
695 B
Ruby
cask "cinny" do
|
|
version "4.0.3"
|
|
sha256 "1aff22fa0b20b82daf5ab578ed4ed658311226bc5417081a0f4af5d32a84c446"
|
|
|
|
url "https://github.com/cinnyapp/cinny-desktop/releases/download/v#{version}/Cinny_desktop-universal.app.tar.gz"
|
|
name "cinny"
|
|
desc "Yet another matrix client for desktop"
|
|
homepage "https://github.com/cinnyapp/cinny-desktop"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "Cinny.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Caches/in.cinny.app",
|
|
"~/Library/Preferences/in.cinny.app.plist",
|
|
"~/Library/Saved Application State/in.cinny.app.savedState",
|
|
"~/Library/WebKit/in.cinny.app",
|
|
]
|
|
end
|