homebrew-gitea/tea-head.rb
Lunny Xiao 74d2b57d6d Change branch name from master to main (#156)
Reviewed-on: https://gitea.com/gitea/homebrew-gitea/pulls/156
Reviewed-by: John Olheiser <john+gitea@jolheiser.com>
Reviewed-by: pat-s <pat-s@noreply.gitea.io>
Reviewed-by: 6543 <6543@obermui.de>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-committed-by: Lunny Xiao <xiaolunwen@gmail.com>
2022-11-03 03:57:49 +08:00

48 lines
1.1 KiB
Ruby

require_relative './utils/macos_codesign.rb'
class TeaHead < Formula
desc "A command line tool to interact with Gitea servers"
homepage "https://gitea.com/gitea/tea"
version "main"
os = OS.mac? ? "darwin" : "linux"
arch = case Hardware::CPU.arch
when :i386 then "386"
when :x86_64 then "amd64"
when :arm64 then "arm64"
else
raise "tea: Unsupported system architecture #{Hardware::CPU.arch}"
end
@@filename = "tea-#{version}-#{os}-#{arch}"
@@url = "https://dl.gitea.io/tea/#{version}/#{@@filename}"
@@using = :nounzip
if os == "darwin" || arch == "amd64"
@@url += ".xz"
@@using = nil
depends_on "xz"
end
@@sha256 = %x[ curl -sL #{@@url}.sha256 ].split.first
sha256 @@sha256
url @@url,
using: @@using
conflicts_with "tea", because: "both install tea binaries"
def install
if stable.using.blank?
filename = TeaHead.class_variable_get("@@filename")
else
filename = downloader.cached_location
end
apply_ad_hoc_signature(filename)
bin.install filename => "tea"
end
test do
system "#{bin}/tea", "--version"
end
end