Skip to content

Commit 8ab05a6

Browse files
committed
Brew formula update for xiond version v18.0.1
1 parent 21bcc0b commit 8ab05a6

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 XiondAT1801 < Formula
6+
desc "Xiond is the Cosmos SDK based blockchain cli/daemon for the Xion Network."
7+
homepage "https://xion.burnt.com/"
8+
version "18.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/v18.0.1/xiond_18.0.1_darwin_amd64.tar.gz"
14+
sha256 "e1d0bde096c0bd560d816e09d615fc281cce9d6f504420990672c01288d75a02"
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/v18.0.1/xiond_18.0.1_darwin_arm64.tar.gz"
22+
sha256 "ea073b1d58c1a226df34b69be6c98800d3a8cd9a97771ebc1d45fdce8d96cf5c"
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/v18.0.1/xiond_18.0.1_linux_amd64.tar.gz"
33+
sha256 "2f8b93ad016b8960234fd2fc3eb365b212517c59c19edb1ff5d964d3d5588e26"
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/v18.0.1/xiond_18.0.1_linux_arm64.tar.gz"
40+
sha256 "b48a77972e23a459b7d1ac48e2315e3646332c4d520a8ca0364ba7c3d4aef8f2"
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)