Files
homebrew-cask/Casks/t/tidelift.rb
2023-11-08 14:09:55 -05:00

23 lines
571 B
Ruby

cask "tidelift" do
version "1.13.15"
sha256 "59eccaf2f8913bddccd22392f4cff01f614734cfa01e865e8e5af20c3cfeb190"
url "https://download.tidelift.com/cli/#{version}/darwin_homebrew/tidelift"
name "Tidelift CLI"
desc "Tool to interact with the Tidelift system"
homepage "https://tidelift.com/cli"
livecheck do
url "https://download.tidelift.com/cli/index.html"
regex(%r{href=.*?/cli/(\d+(?:\.\d+)+)/darwin/tidelift}i)
end
binary "tidelift"
postflight do
set_permissions "#{staged_path}/tidelift", "+x"
end
# No zap stanza required
end