commit 615641d0b8ed5a4482802820ea506ffd2e4c9868 Author: Joakim Olsson Date: Sun Oct 9 19:10:17 2022 +0000 Brew formula update for unbound-schemas version v0.0.1 diff --git a/Formula/unbound-schemas.rb b/Formula/unbound-schemas.rb new file mode 100644 index 0000000..55c6798 --- /dev/null +++ b/Formula/unbound-schemas.rb @@ -0,0 +1,47 @@ +# 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.1" + + on_macos do + if Hardware::CPU.intel? + url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.0.1/downloads/unbound-schemas_0.0.1_Darwin_x86_64.tar.gz" + sha256 "88c39b737ee71d3a2aaa10522f6f62b6b322db4776356a8d8dd8c4065e5c8cad" + + def install + bin.install "schemactl" + end + end + if Hardware::CPU.arm? + url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.0.1/downloads/unbound-schemas_0.0.1_Darwin_arm64.tar.gz" + sha256 "2eef952948f9110a07e94183bf2a93ad77b2d0be2795789d52b486b329fa6281" + + def install + bin.install "schemactl" + end + end + end + + on_linux do + if Hardware::CPU.intel? + url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.0.1/downloads/unbound-schemas_0.0.1_Linux_x86_64.tar.gz" + sha256 "7d6b0ad93712b5fc4780e777082275c3526ee48faedc10e2338a0c83fd9dfbe6" + + 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.1/downloads/unbound-schemas_0.0.1_Linux_arm64.tar.gz" + sha256 "8782044e702167dab82188f6b2fa548df5ed5c998a9fe77eda43f2fbb81bac8d" + + def install + bin.install "schemactl" + end + end + end +end