1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-19 18:57:59 +03:00
wezterm/ci/wezterm-linuxbrew.rb.template

18 lines
722 B
Plaintext
Raw Normal View History

# 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/"
2022-03-10 01:07:55 +03:00
url "https://github.com/wez/wezterm/releases/download/@TAG@/WezTerm-@TAG@-Ubuntu18.04.AppImage"
sha256 "@SHA256@"
2022-03-10 01:07:55 +03:00
head "https://github.com/wez/wezterm/releases/download/nightly/WezTerm-nightly-Ubuntu18.04.AppImage"
def install
Dir.glob("*.AppImage").each do |img|
bin.install img => "wezterm"
end
end
end