Skip to content

Commit cd5cc7f

Browse files
committed
Brew formula update for tfxunpack version v0.0.1
1 parent 68beb0e commit cd5cc7f

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

Formula/tfxunpack.rb

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# typed: false
2+
# frozen_string_literal: true
3+
4+
# This file was generated by GoReleaser. DO NOT EDIT.
5+
class Tfxunpack < Formula
6+
desc "Extract crossplane resources"
7+
homepage "https://github.com/DoodleScheduling/tfxunpack"
8+
version "0.0.1"
9+
10+
on_macos do
11+
on_intel do
12+
url "https://github.com/DoodleScheduling/tfxunpack/releases/download/v0.0.1/tfxunpack_0.0.1_darwin_amd64.tar.gz"
13+
sha256 "ad0a0a6e0f41e79d6383b2456ac98566084d16f05ec154961a921e05ef2e49a8"
14+
15+
def install
16+
bin.install "tfxunpack"
17+
end
18+
end
19+
on_arm do
20+
url "https://github.com/DoodleScheduling/tfxunpack/releases/download/v0.0.1/tfxunpack_0.0.1_darwin_arm64.tar.gz"
21+
sha256 "5b93b4342da731792ec21a203d7a4bcf9539c9c347424a84f4e549ea728bdfd7"
22+
23+
def install
24+
bin.install "tfxunpack"
25+
end
26+
end
27+
end
28+
29+
on_linux do
30+
on_intel do
31+
if Hardware::CPU.is_64_bit?
32+
url "https://github.com/DoodleScheduling/tfxunpack/releases/download/v0.0.1/tfxunpack_0.0.1_linux_amd64.tar.gz"
33+
sha256 "5b394bdd1b5e03efd7b963f63b32c5118cc7c92b6c276fe85d699199c41301c7"
34+
35+
def install
36+
bin.install "tfxunpack"
37+
end
38+
end
39+
end
40+
on_arm do
41+
if Hardware::CPU.is_64_bit?
42+
url "https://github.com/DoodleScheduling/tfxunpack/releases/download/v0.0.1/tfxunpack_0.0.1_linux_arm64.tar.gz"
43+
sha256 "4906797b8b80dd68e8d9d8eb3f9e34d129b679ef4b459cb1ffbeb58b63b6410a"
44+
45+
def install
46+
bin.install "tfxunpack"
47+
end
48+
end
49+
end
50+
end
51+
52+
test do
53+
system "#{bin}/tfxunpack -h"
54+
end
55+
end

0 commit comments

Comments
 (0)