Skip to content

Commit

Permalink
Brew formula update for goal version 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
goreleaserbot committed Nov 7, 2021
1 parent d5bd726 commit 36ca26b
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions Formula/goal.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# typed: false
# frozen_string_literal: true

# This file was generated by GoReleaser. DO NOT EDIT.
class Goal < Formula
desc "Use your aliases safely"
homepage "https://github.com/aaabramov/goal"
version "0.0.2"
license "Apache-2.0"

on_macos do
if Hardware::CPU.arm?
url "http://github.com/aaabramov/goal/releases/0.0.2/goal_0.0.2_darwin_arm64.tar.gz"
sha256 "21ff466ffa4a051882cf0e7d65fded82232282c6566e6bea548f64a113f465ca"

def install
bin.install "goal"
end
end
if Hardware::CPU.intel?
url "http://github.com/aaabramov/goal/releases/0.0.2/goal_0.0.2_darwin_amd64.tar.gz"
sha256 "cdec04526f283a76f3de337318184dc99824d9863d3f96902a124f83e387b549"

def install
bin.install "goal"
end
end
end

on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "http://github.com/aaabramov/goal/releases/0.0.2/goal_0.0.2_linux_arm64.tar.gz"
sha256 "0aefb7acd78b1685d9cac3240469247ab23715868ddbf1e42b342419f884896c"

def install
bin.install "goal"
end
end
if Hardware::CPU.intel?
url "http://github.com/aaabramov/goal/releases/0.0.2/goal_0.0.2_linux_amd64.tar.gz"
sha256 "408d76e5e4d2aa990eb973b84d0ba568c7c7a6f62cb60d22074169bb27bb3202"

def install
bin.install "goal"
end
end
end

def caveats; <<~EOS
See https://github.com/aaabramov/goal
EOS
end
end

0 comments on commit 36ca26b

Please sign in to comment.