-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpuri.rb
More file actions
37 lines (31 loc) · 1.02 KB
/
Copy pathpuri.rb
File metadata and controls
37 lines (31 loc) · 1.02 KB
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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Puri < Formula
desc ""
homepage "https://github.com/simonmittag/puri"
version "0.1.9"
on_macos do
url "https://github.com/simonmittag/puri/releases/download/v0.1.9/puri_0.1.9_darwin_all.tar.gz"
sha256 "78261243da43dbcd3ba083ccc1838ada583e09d5b2546b5c851177442c40b53c"
def install
bin.install "puri"
end
end
on_linux do
if Hardware::CPU.intel?
url "https://github.com/simonmittag/puri/releases/download/v0.1.9/puri_0.1.9_linux_amd64.tar.gz"
sha256 "9b9da411c01fb60e3a07e3d5f69aee38f3d074c186745914e460987e85f621f2"
def install
bin.install "puri"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/simonmittag/puri/releases/download/v0.1.9/puri_0.1.9_linux_arm64.tar.gz"
sha256 "61387180a6fd9ec52259d5e578699a8d61d2a6c750c6e9c9175f41a253e8b0b7"
def install
bin.install "puri"
end
end
end
end