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.8.4"
|
|
sha256 "ac5c42ab5418af2009d112fc13c713f775abacdfa8c3abfa6af64019d776f443"
|
|
|
|
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
|