48 lines
1.4 KiB
Ruby
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.6"
|
|
|
|
on_macos do
|
|
if Hardware::CPU.intel?
|
|
url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.0.6/downloads/unbound-schemas_0.0.6_darwin_amd64.tar.gz"
|
|
sha256 "f984e709de5f9dbb79b6161553960211c081167cbbb19aa0ef840828715c3668"
|
|
|
|
def install
|
|
bin.install "schemactl"
|
|
end
|
|
end
|
|
if Hardware::CPU.arm?
|
|
url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.0.6/downloads/unbound-schemas_0.0.6_darwin_arm64.tar.gz"
|
|
sha256 "51a59b6a6c40f38f8150408ae929393e7880e6258d10cb737297941da5a9f3df"
|
|
|
|
def install
|
|
bin.install "schemactl"
|
|
end
|
|
end
|
|
end
|
|
|
|
on_linux do
|
|
if Hardware::CPU.intel?
|
|
url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.0.6/downloads/unbound-schemas_0.0.6_linux_amd64.tar.gz"
|
|
sha256 "74ff96e56765ada40b622eb21ed1165e5300ee78e774447310eae28a91bef4e5"
|
|
|
|
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.6/downloads/unbound-schemas_0.0.6_linux_arm64.tar.gz"
|
|
sha256 "372f3cdc1ffa5f90776f1c85476b58b59872394bd65bfc5ff3a1bcc8f01cef21"
|
|
|
|
def install
|
|
bin.install "schemactl"
|
|
end
|
|
end
|
|
end
|
|
end
|