-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathom.rb
55 lines (47 loc) · 1.41 KB
/
om.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Om < Formula
desc ""
homepage ""
version "7.15.0"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/pivotal-cf/om/releases/download/7.15.0/om-darwin-amd64-7.15.0.tar.gz"
sha256 "5a3959ac5997e1d5b356c160a4cb9681f84f596d9117398c545dcd0718581627"
def install
bin.install "om"
end
end
if Hardware::CPU.arm?
url "https://github.com/pivotal-cf/om/releases/download/7.15.0/om-darwin-arm64-7.15.0.tar.gz"
sha256 "f62417bc6ff206d2b890761f6a6ec86b48edd800ee00bd8fa8607fbec003f376"
def install
bin.install "om"
end
end
end
on_linux do
if Hardware::CPU.intel?
if Hardware::CPU.is_64_bit?
url "https://github.com/pivotal-cf/om/releases/download/7.15.0/om-linux-amd64-7.15.0.tar.gz"
sha256 "ea2180e1e41fe2ec292f9ad327162818864deb711615f7b7886adafcefe799d5"
def install
bin.install "om"
end
end
end
if Hardware::CPU.arm?
if Hardware::CPU.is_64_bit?
url "https://github.com/pivotal-cf/om/releases/download/7.15.0/om-linux-arm64-7.15.0.tar.gz"
sha256 "a7272dbf5bcc1dab5a59bac1e90d433ba039a3ba30b17a33b5d16ecafaf9f11d"
def install
bin.install "om"
end
end
end
end
test do
system "#{bin}/om --version"
end
end