-
Notifications
You must be signed in to change notification settings - Fork 4
/
pack.rb
25 lines (23 loc) · 968 Bytes
/
pack.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
###
# This file is autogenerated from https://github.com/buildpacks/pack/tree/main/.github/workflows/delivery/homebrew/
# Changes should be committed there.
###
class Pack < Formula
desc "A CLI for building apps using Cloud Native Buildpacks"
homepage "https://github.com/buildpacks/pack"
version "0.36.2"
version_scheme 1
if OS.mac? && Hardware::CPU.arm?
url "https://github.com/buildpacks/pack/releases/download/v0.36.2/pack-v0.36.2-macos-arm64.tgz"
sha256 "f1c008cd293a0b50dadc351a7902ad9934c682f44d2d89814a4dd2a2fbe64cc2"
elsif OS.mac?
url "https://github.com/buildpacks/pack/releases/download/v0.36.2/pack-v0.36.2-macos.tgz"
sha256 "9cd29ec0602428be32247d2858ca5e3ee55d3957341756241f615adb5f8b3380"
else
url "https://github.com/buildpacks/pack/releases/download/v0.36.2/pack-v0.36.2-linux.tgz"
sha256 "aabae22d9577c5894b7f280d17400a6b2ed055e8c5f17a27821c512b3f995ef9"
end
def install
bin.install "pack"
end
end