mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
37 lines
1.0 KiB
Ruby
37 lines
1.0 KiB
Ruby
cask "perforce" do
|
|
version "2023.2,2523307"
|
|
sha256 "290b818e33c026003d500467fd4024bd927fddac61b5b2b60e257d7cb1381906"
|
|
|
|
url "https://filehost.perforce.com/perforce/r#{version.major[-2..]}.#{version.minor}/bin.macosx1015x86_64/helix-core-server.tgz"
|
|
name "Perforce Helix Core Server"
|
|
name "Perforce Helix Command-Line Client (P4)"
|
|
name "Perforce Helix Broker (P4Broker)"
|
|
name "Perforce Helix Versioning Engine (P4D)"
|
|
name "Perforce Helix Proxy (P4P)"
|
|
desc "Version control"
|
|
homepage "https://www.perforce.com/"
|
|
|
|
livecheck do
|
|
url "https://www.perforce.com/perforce/doc.current/user/relnotes.txt"
|
|
regex(%r{\((\d+(?:\.\d+)+)/(\d+)\)}i)
|
|
strategy :page_match do |page, regex|
|
|
page.scan(regex).map { |match| "#{match[0]},#{match[1]}" }
|
|
end
|
|
end
|
|
|
|
depends_on macos: ">= :sierra"
|
|
|
|
binary "p4"
|
|
binary "p4broker"
|
|
binary "p4d"
|
|
binary "p4p"
|
|
|
|
# No zap stanza required
|
|
|
|
caveats <<~EOS
|
|
Instructions on using the Helix Versioning Engine are available in
|
|
|
|
#{staged_path}
|
|
EOS
|
|
end
|