homebrew-cask/Casks/ipfs.rb

25 lines
641 B
Ruby

cask "ipfs" do
version "0.26.1"
sha256 "87285c407c65eed495477aa74c30df001c2384080168938d6210edb849800180"
url "https://github.com/ipfs/ipfs-desktop/releases/download/v#{version}/ipfs-desktop-#{version}-mac.dmg"
name "IPFS Desktop"
desc "Menu bar application for the IPFS peer-to-peer network"
homepage "https://github.com/ipfs/ipfs-desktop"
livecheck do
url :url
strategy :github_latest
end
auto_updates true
depends_on macos: ">= :el_capitan"
app "IPFS Desktop.app"
zap trash: [
"~/Library/Application Support/Caches/ipfs-desktop-updater/",
"~/Library/Application Support/IPFS Desktop",
]
end