23 lines
563 B
Ruby
23 lines
563 B
Ruby
cask "bisq" do
|
|
version "1.9.15"
|
|
sha256 "8ad7e26024c002adb1e0a73bacca37ee81dd42ac5fdf7bb23980349870cc8a3c"
|
|
|
|
url "https://github.com/bisq-network/bisq/releases/download/v#{version}/Bisq-#{version}.dmg",
|
|
verified: "github.com/bisq-network/bisq/"
|
|
name "Bisq"
|
|
desc "Decentralised 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
|