Skip to content

Commit

Permalink
Brew formula update for uitail version v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marhaupe committed Sep 15, 2024
1 parent 5862db8 commit 3758a97
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions formula/uitail.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 Uitail < Formula
desc ""
homepage ""
version "0.0.1"

depends_on "git"

on_macos do
on_intel do
url "https://github.com/marhaupe/uitail/releases/download/v0.0.1/uitail_Darwin_x86_64.tar.gz"
sha256 "f75b882d0004624c2b42ff16fb79c48e690c7b3652ff171d796830563266e9ae"

def install
bin.install "uitail"
end
end
on_arm do
url "https://github.com/marhaupe/uitail/releases/download/v0.0.1/uitail_Darwin_arm64.tar.gz"
sha256 "9e506850c378e24d0fc78d4b89fa575728509c703366f845346162c7453c4b7e"

def install
bin.install "uitail"
end
end
end

on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/marhaupe/uitail/releases/download/v0.0.1/uitail_Linux_x86_64.tar.gz"
sha256 "60885f43fdf87bb55ce92bae257698a7364870993b9d66318d7d08bb86fab451"

def install
bin.install "uitail"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/marhaupe/uitail/releases/download/v0.0.1/uitail_Linux_arm64.tar.gz"
sha256 "d7f03558f428e6ee0baf6bde9e16507e863484c234505a537fa2dd0cad93eedf"

def install
bin.install "uitail"
end
end
end
end
end

0 comments on commit 3758a97

Please sign in to comment.