Skip to content

Commit d3bd250

Browse files
committed
Brew formula update for xiond version v15.0.1
1 parent 21bcc0b commit d3bd250

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

Formula/[email protected]

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# typed: false
2+
# frozen_string_literal: true
3+
4+
# This file was generated by GoReleaser. DO NOT EDIT.
5+
class XiondAT1501 < Formula
6+
desc "Xiond is the Cosmos SDK based blockchain cli/daemon for the Xion Network."
7+
homepage "https://xion.burnt.com/"
8+
version "15.0.1"
9+
license "Apache2.0"
10+
11+
on_macos do
12+
if Hardware::CPU.intel?
13+
url "https://github.com/burnt-labs/xion/releases/download/v15.0.1/xiond_15.0.1_darwin_amd64.tar.gz"
14+
sha256 "a3bb3c3e0e1221867f8ed2c81f0f4709c4a9b415e2e6df24c7b7fddbe358b607"
15+
16+
def install
17+
bin.install "xiond"
18+
end
19+
end
20+
if Hardware::CPU.arm?
21+
url "https://github.com/burnt-labs/xion/releases/download/v15.0.1/xiond_15.0.1_darwin_arm64.tar.gz"
22+
sha256 "3b5a3422bcf7a703d23e6ede34ebe78ccc1e8e263fd43bfc70e7b02791ae98a0"
23+
24+
def install
25+
bin.install "xiond"
26+
end
27+
end
28+
end
29+
30+
on_linux do
31+
if Hardware::CPU.intel? and Hardware::CPU.is_64_bit?
32+
url "https://github.com/burnt-labs/xion/releases/download/v15.0.1/xiond_15.0.1_linux_amd64.tar.gz"
33+
sha256 "d2a7313a0eb3f8c7a04528f8558a96d17e68c64ff153915ad03c3f8d900a14b4"
34+
def install
35+
bin.install "xiond"
36+
end
37+
end
38+
if Hardware::CPU.arm? and Hardware::CPU.is_64_bit?
39+
url "https://github.com/burnt-labs/xion/releases/download/v15.0.1/xiond_15.0.1_linux_arm64.tar.gz"
40+
sha256 "54551afc2e865d1e5dd641932df84e36a28be8a2969f9fc79bee1cbcec48fb56"
41+
def install
42+
bin.install "xiond"
43+
end
44+
end
45+
end
46+
47+
test do
48+
system "#{bin}/xiond version"
49+
end
50+
end

0 commit comments

Comments
 (0)