Files
homebrew-taps/Formula/unbound-schemas.rb
T

48 lines
1.4 KiB
Ruby

# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class UnboundSchemas < Formula
desc ""
homepage "https://schemas.unbound.se/"
version "0.0.3"
on_macos do
if Hardware::CPU.intel?
url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.0.3/downloads/unbound-schemas_0.0.3_Darwin_x86_64.tar.gz"
sha256 "d34e729968f882e583d4930f85e7fc2c611075405485b2a42ec0892f2c3c62b7"
def install
bin.install "schemactl"
end
end
if Hardware::CPU.arm?
url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.0.3/downloads/unbound-schemas_0.0.3_Darwin_arm64.tar.gz"
sha256 "ca9c8553e4ca7178b3fd6f2f5c121d11325f9955431de3c9d81d7c980d1c6323"
def install
bin.install "schemactl"
end
end
end
on_linux do
if Hardware::CPU.intel?
url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.0.3/downloads/unbound-schemas_0.0.3_Linux_x86_64.tar.gz"
sha256 "7200df658e45867dab301916d1a67f4d9dbdc412873e581089f6213898344e3f"
def install
bin.install "schemactl"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.0.3/downloads/unbound-schemas_0.0.3_Linux_arm64.tar.gz"
sha256 "5763785d4c4b949713ff982b9e2cd1338592451c6eb7126e8477cbc5b836f47a"
def install
bin.install "schemactl"
end
end
end
end