mirror of
https://github.com/wez/wezterm.git
synced 2024-11-11 03:27:05 +03:00
22 lines
914 B
Plaintext
22 lines
914 B
Plaintext
# Note: if you are viewing this from the tap repo, this file is automatically
|
|
# updated from:
|
|
# https://github.com/wez/wezterm/blob/main/ci/wezterm-homebrew-macos.rb.template
|
|
# by automation in the wezterm repo.
|
|
|
|
class Wezterm < Formula
|
|
desc "A GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust"
|
|
homepage "https://wezfurlong.org/wezterm/"
|
|
url "https://github.com/wez/wezterm/releases/download/@TAG@/WezTerm-macos-@TAG@.zip"
|
|
sha256 "@SHA256@"
|
|
head "https://github.com/wez/wezterm/releases/download/nightly/WezTerm-macos-nightly.zip"
|
|
|
|
def install
|
|
prefix.install "WezTerm.app"
|
|
bin.write_exec_script "#{prefix}/WezTerm.app/wezterm"
|
|
bin.write_exec_script "#{prefix}/WezTerm.app/wezterm-gui"
|
|
bin.write_exec_script "#{prefix}/WezTerm.app/wezterm-mux-server"
|
|
bin.write_exec_script "#{prefix}/WezTerm.app/strip-ansi-escapes"
|
|
end
|
|
end
|
|
|