mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-12-17 09:34:16 -05:00
26 lines
609 B
Text
26 lines
609 B
Text
cask "eigenwallet" do
|
|
version "VERSION_PLACEHOLDER"
|
|
|
|
on_arm do
|
|
sha256 "AARCH64_SHA256_PLACEHOLDER"
|
|
url "https://github.com/eigenwallet/core/releases/download/#{version}/eigenwallet_#{version}_aarch64.dmg"
|
|
end
|
|
|
|
on_intel do
|
|
sha256 "X64_SHA256_PLACEHOLDER"
|
|
url "https://github.com/eigenwallet/core/releases/download/#{version}/eigenwallet_#{version}_x64.dmg"
|
|
end
|
|
|
|
name "Eigenwallet"
|
|
desc "GUI for XMR<>BTC Atomic Swaps"
|
|
homepage "https://github.com/eigenwallet/core"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
auto_updates true
|
|
|
|
app "eigenwallet.app"
|
|
end
|