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.2"
on_macos do
if Hardware::CPU.intel?
url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.0.2/downloads/unbound-schemas_0.0.2_Darwin_x86_64.tar.gz"
sha256 "a53b931ac0638bc9e3c1e12d1c401f07b541df19b7b30a835ad6808d68119806"
def install
bin.install "schemactl"
end
end
if Hardware::CPU.arm?
url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.0.2/downloads/unbound-schemas_0.0.2_Darwin_arm64.tar.gz"
sha256 "c9d9b933ef121b55f6e809a990fbd2eba5b6a82331aaca6f4b994ae905d9ccc0"
def install
bin.install "schemactl"
end
end
end
on_linux do
if Hardware::CPU.intel?
url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.0.2/downloads/unbound-schemas_0.0.2_Linux_x86_64.tar.gz"
sha256 "3f67aa3aec3ac88b58eff3d14a986039bcadc9f90a9736e03514e0046038a4da"
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.2/downloads/unbound-schemas_0.0.2_Linux_arm64.tar.gz"
sha256 "1d93da0ed1b15a4a30d978a1ee4859904fe528a5cff670536bff94451f2eb89e"
def install
bin.install "schemactl"
end
end
end
end