Skip to content

Commit

Permalink
Brew formula update for terraform-roulette version v0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lbennett-stacki committed May 1, 2024
1 parent c4ea7b4 commit f6361a6
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions Formula/terraform-roulette.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# typed: false
# frozen_string_literal: true

# This file was generated by GoReleaser. DO NOT EDIT.
class TerraformRoulette < Formula
desc "Terraform CLI if it was inspired by roulette"
homepage "https://github.com/lbennett-stacki/terraform-roulette"
version "0.0.8"
license "MIT"

depends_on "go"
depends_on "terraform"

on_macos do
if Hardware::CPU.intel?
url "https://github.com/lbennett-stacki/terraform-roulette/releases/download/v0.0.8/terraform-roulette_Darwin_x86_64.tar.gz"
sha256 "6ae902935b1c05f6bafb678ddd86ae94fd48143cdb21887b96011adf1aa70326"

def install
bin.install "terraform-roulette"
end
end
if Hardware::CPU.arm?
url "https://github.com/lbennett-stacki/terraform-roulette/releases/download/v0.0.8/terraform-roulette_Darwin_arm64.tar.gz"
sha256 "025ec2101a192a71c2487a67ce42534be2a062508db3413278eb1e06fb784da6"

def install
bin.install "terraform-roulette"
end
end
end

on_linux do
if Hardware::CPU.intel?
url "https://github.com/lbennett-stacki/terraform-roulette/releases/download/v0.0.8/terraform-roulette_Linux_x86_64.tar.gz"
sha256 "efcf078363f49ad9fe5b3cc03bcd8ecf99b5ff578e6ffbf1683fb1a67cc0db82"

def install
bin.install "terraform-roulette"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/lbennett-stacki/terraform-roulette/releases/download/v0.0.8/terraform-roulette_Linux_arm64.tar.gz"
sha256 "6e1ce964cd69a62852987690a2c57bf790b7f94c357de723f581063b8a186340"

def install
bin.install "terraform-roulette"
end
end
end
end

0 comments on commit f6361a6

Please sign in to comment.