mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
30 lines
760 B
Ruby
30 lines
760 B
Ruby
cask "ledger-live" do
|
|
version "2.71.1"
|
|
sha256 "a712b06618ea4f50a6e1411be096bfb731b39c17f75589f9427218efa8bf942a"
|
|
|
|
url "https://download.live.ledger.com/ledger-live-desktop-#{version}-mac.dmg"
|
|
name "Ledger Live"
|
|
desc "Wallet desktop application to maintain multiple cryptocurrencies"
|
|
homepage "https://www.ledger.com/ledger-live"
|
|
|
|
livecheck do
|
|
url "https://download.live.ledger.com/latest/mac"
|
|
strategy :header_match
|
|
end
|
|
|
|
auto_updates true
|
|
|
|
app "Ledger Live.app"
|
|
|
|
uninstall quit: [
|
|
"com.ledger.live",
|
|
"com.ledger.live.helper",
|
|
]
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Ledger Live",
|
|
"~/Library/Preferences/com.ledger.live.plist",
|
|
"~/Library/Saved Application State/com.ledger.live.savedState",
|
|
]
|
|
end
|