Merge pull request #207012 from Homebrew/bump-tailwindcss-4.0.5
[Homebrew/homebrew-core.git] / Formula / t / threemux.rb
blob64684fb4e68a0bf125aa84b339d2fb9d13a112f6
1 class Threemux < Formula
2   desc "Terminal multiplexer inspired by i3"
3   homepage "https://github.com/aaronjanse/3mux"
4   url "https://github.com/aaronjanse/3mux/archive/refs/tags/v1.1.0.tar.gz"
5   sha256 "0f4dae181914c73eaa91bdb21ee0875f21b5da64c7c9d478f6d52a2d0aa2c0ea"
6   license "MIT"
7   head "https://github.com/aaronjanse/3mux.git", branch: "master"
9   bottle do
10     sha256 cellar: :any_skip_relocation, arm64_sequoia:  "3d8d3f42362a72fe5ef6390d24223c572b596d234c590d7dcd51129678f6aae5"
11     sha256 cellar: :any_skip_relocation, arm64_sonoma:   "358ebf92a4d1ccf5844e2b21c3918d4fdc0344f3d5aea110b170e2c5244bd438"
12     sha256 cellar: :any_skip_relocation, arm64_ventura:  "cef0aa7766c9cf4045c403ae53f20fa8fcb4913c80148b01755b4a4da7449d8e"
13     sha256 cellar: :any_skip_relocation, arm64_monterey: "471a6870e6b9d45e994d2977c855e0aea4ed22b1f59f0d09afaf4d096edd0e2c"
14     sha256 cellar: :any_skip_relocation, arm64_big_sur:  "2d3dd3465938d0ac5b845b07689a08b667613210d9d58649c9a152ade32dc347"
15     sha256 cellar: :any_skip_relocation, sonoma:         "fa0adac1469fbe07b01febde46412e9f4d182a5d891c7816b788f1264fc53d06"
16     sha256 cellar: :any_skip_relocation, ventura:        "2ca8026a1a322986b2ad2697314f37faf58634c0de2ca4722cfbe194c05006d8"
17     sha256 cellar: :any_skip_relocation, monterey:       "64497230017e4e033cbafc7ae8f684e5ff77c1a8af3ec153f715269d5f4dab01"
18     sha256 cellar: :any_skip_relocation, big_sur:        "c87ed9904dccc4872aa6c8ed0e6de39bc7f3ccdb5fa7fef1b99e45871d85da18"
19     sha256 cellar: :any_skip_relocation, catalina:       "8071788129cb66bd2e7c6fe9f877a56fe2807b70204747a858a4e68a650a07b8"
20     sha256 cellar: :any_skip_relocation, mojave:         "d8ee02f2139e26800e6fa830e02a09b52df74164ec3cdf2306bf89c4ef6b92f9"
21     sha256 cellar: :any_skip_relocation, x86_64_linux:   "33200f3fd9175837129386fdfa67575eebacc806d9da099d98b0888aaff56124"
22   end
24   depends_on "go" => :build
26   def install
27     system "go", "build", *std_go_args(ldflags: "-s -w", output: bin/"3mux")
28   end
30   test do
31     require "open3"
33     Open3.popen2e(bin/"3mux") do |stdin, _, _|
34       stdin.write "brew\n"
35       stdin.write "3mux detach\n"
36     end
38     assert_match "Sessions:", pipe_output("#{bin}/3mux ls")
39   end
40 end