mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
43 lines
1.3 KiB
Ruby
43 lines
1.3 KiB
Ruby
cask "wezterm" do
|
|
version "20230712-072601,f4abf8fd"
|
|
sha256 "27c5b4eedd04e41138f0afc184d9b03dc5eb03a773ab144daa96bcc12ffb9851"
|
|
|
|
url "https://github.com/wez/wezterm/releases/download/#{version.csv.first}-#{version.csv.second}/WezTerm-macos-#{version.csv.first}-#{version.csv.second}.zip",
|
|
verified: "github.com/wez/wezterm/"
|
|
name "WezTerm"
|
|
desc "GPU-accelerated cross-platform terminal emulator and multiplexer"
|
|
homepage "https://wezfurlong.org/wezterm/"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/^(\d+(?:[.-]\d+)+)-(\h+)$/i)
|
|
strategy :github_latest do |json, regex|
|
|
json["tag_name"]&.scan(regex)&.map { |match| "#{match[0]},#{match[1]}" }
|
|
end
|
|
end
|
|
|
|
conflicts_with cask: "homebrew/cask-versions/wezterm-nightly"
|
|
|
|
app "WezTerm.app"
|
|
|
|
%w[
|
|
wezterm
|
|
wezterm-gui
|
|
wezterm-mux-server
|
|
strip-ansi-escapes
|
|
].each do |tool|
|
|
binary "#{appdir}/WezTerm.app/Contents/MacOS/#{tool}"
|
|
end
|
|
|
|
preflight do
|
|
# Move "WezTerm-macos-#{version}/WezTerm.app" out of the subfolder
|
|
staged_subfolder = staged_path.glob(["WezTerm-*", "wezterm-*"]).first
|
|
if staged_subfolder
|
|
FileUtils.mv(staged_subfolder/"WezTerm.app", staged_path)
|
|
FileUtils.rm_rf(staged_subfolder)
|
|
end
|
|
end
|
|
|
|
zap trash: "~/Library/Saved Application State/com.github.wez.wezterm.savedState"
|
|
end
|