mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The maintainers of _bisq_ regenerated the binary on Oct 26th with the same version number: https://github.com/bisq-network/bisq/releases/tag/v1.9.14 This change fixes the cask to use the latest hash.
23 lines
563 B
Ruby
23 lines
563 B
Ruby
cask "bisq" do
|
|
version "1.9.14"
|
|
sha256 "9289a41f653377d2a34cb0256f531b8ec57edc09311da85db8d084ee2e81d1f8"
|
|
|
|
url "https://github.com/bisq-network/bisq/releases/download/v#{version}/Bisq-#{version}.dmg",
|
|
verified: "github.com/bisq-network/bisq/"
|
|
name "Bisq"
|
|
desc "Decentralized bitcoin exchange network"
|
|
homepage "https://bisq.network/"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "Bisq.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Bisq",
|
|
"~/Library/Saved Application State/io.bisq.CAT.savedState",
|
|
]
|
|
end
|