homebrew-gitea/tea-head.rb
Rui Chen 2cba9d5b7f chore: add licenses for formulae files (#173)
Add license field for all formulae files.

Reviewed-on: https://gitea.com/gitea/homebrew-gitea/pulls/173
Reviewed-by: John Olheiser <john+gitea@jolheiser.com>
Reviewed-by: techknowlogick <techknowlogick@noreply.gitea.com>
Co-authored-by: Rui Chen <rui@chenrui.dev>
Co-committed-by: Rui Chen <rui@chenrui.dev>
2023-09-03 19:08:18 +00:00

49 lines
1.2 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"
license "MIT"
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.com/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