2021-01-07 05:14:50 -07:00
|
|
|
# typed: false
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-08-15 17:16:48 -03:00
|
|
|
# This file was generated by GoReleaser. DO NOT EDIT.
|
|
|
|
class FooIsBar < Formula
|
|
|
|
desc ""
|
|
|
|
homepage ""
|
|
|
|
version "1.0.1"
|
2021-05-30 14:25:25 -03:00
|
|
|
depends_on :macos
|
2020-08-15 17:16:48 -03:00
|
|
|
|
2021-05-30 14:25:25 -03:00
|
|
|
on_macos do
|
2022-02-25 19:57:46 -05:00
|
|
|
url "https://dummyhost/download/v1.0.1/bin.tar.gz"
|
|
|
|
sha256 "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
2020-08-15 17:16:48 -03:00
|
|
|
|
2022-02-25 19:57:46 -05:00
|
|
|
def install
|
|
|
|
end
|
|
|
|
|
|
|
|
if Hardware::CPU.arm?
|
|
|
|
def caveats
|
|
|
|
<<~EOS
|
|
|
|
The darwin_arm64 architecture is not supported for the FooIsBar
|
|
|
|
formula at this time. The darwin_amd64 binary may work in compatibility
|
|
|
|
mode, but it might not be fully supported.
|
|
|
|
EOS
|
2021-10-18 09:31:20 -03:00
|
|
|
end
|
|
|
|
end
|
2020-08-15 17:16:48 -03:00
|
|
|
end
|
|
|
|
end
|