mirror of
https://github.com/wez/wezterm.git
synced 2024-11-09 22:15:15 +03:00
18 lines
722 B
Plaintext
18 lines
722 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-linuxbrew.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-@TAG@-Ubuntu16.04.AppImage"
|
|
sha256 "@SHA256@"
|
|
head "https://github.com/wez/wezterm/releases/download/nightly/WezTerm-nightly-Ubuntu16.04.AppImage"
|
|
|
|
def install
|
|
Dir.glob("*.AppImage").each do |img|
|
|
bin.install img => "wezterm"
|
|
end
|
|
end
|
|
end
|