mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
27 lines
735 B
Ruby
27 lines
735 B
Ruby
cask "fedistar" do
|
|
version "1.7.4"
|
|
sha256 "34ddcf47873483ebd214703d4e1b37d5a0bf2837841989bc9e5693a13e2dc466"
|
|
|
|
url "https://github.com/h3poteto/fedistar/releases/download/v#{version}/fedistar_#{version}_universal.dmg",
|
|
verified: "github.com/h3poteto/fedistar/"
|
|
name "fedistar"
|
|
desc "Multi-column Mastodon, Pleroma, and Friendica client for desktop"
|
|
homepage "https://fedistar.net/"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
depends_on macos: ">= :ventura"
|
|
|
|
app "fedistar.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/*.net.fedistar",
|
|
"~/Library/Application Scripts/net.fedistar",
|
|
"~/Library/Containers/net.fedistar",
|
|
"~/Library/Group Containers/*.net.fedistar",
|
|
]
|
|
end
|