Merge pull request #207012 from Homebrew/bump-tailwindcss-4.0.5
[Homebrew/homebrew-core.git] / Formula / t / tmux-mem-cpu-load.rb
blob93e43b098fabb25e0baf10050edcd8af65a5b68c
1 class TmuxMemCpuLoad < Formula
2   desc "CPU, RAM memory, and load monitor for use with tmux"
3   homepage "https://github.com/thewtex/tmux-mem-cpu-load"
4   url "https://github.com/thewtex/tmux-mem-cpu-load/archive/refs/tags/v3.8.1.tar.gz"
5   sha256 "3fc373233f47c5cefd540a192415cf37f0135dc0d05530e63ee34eb927e1f1e0"
6   license "Apache-2.0"
7   head "https://github.com/thewtex/tmux-mem-cpu-load.git", branch: "master"
9   bottle do
10     sha256 cellar: :any_skip_relocation, arm64_sequoia:  "980cf3f537ba72c0d7fca497c03e6562c69499f4bcf5413f737b6da7abc016b4"
11     sha256 cellar: :any_skip_relocation, arm64_sonoma:   "ef9e0faf28a1f984fe8efffe725a23d81a59b259a84a9b180293398ee07d0a3c"
12     sha256 cellar: :any_skip_relocation, arm64_ventura:  "3d91396e2c6eb3e94d8343f6083ba061ed81459a3c413f4d991a70d038719f0c"
13     sha256 cellar: :any_skip_relocation, arm64_monterey: "4ad4f582f859b79611a44bd83a7d13d70920fbb8cb4c7eafc01f974fbe38c4ce"
14     sha256 cellar: :any_skip_relocation, sonoma:         "c57514a7fea2d7f83c5e237b015f312cfa601e516e13acbd4794e8f7a5f6dc0d"
15     sha256 cellar: :any_skip_relocation, ventura:        "1b0b301683d793030f7a12f17238e14d40a2ed05cfedb9722af6ad3d2e07e660"
16     sha256 cellar: :any_skip_relocation, monterey:       "134c4b3ded75c406a60add39d8674483bd5863dbeaff86af22ee4404744e067d"
17     sha256 cellar: :any_skip_relocation, x86_64_linux:   "b9a4547c45737940eaec35865376d01fd67d7087475926593f71637333b1d0a5"
18   end
20   depends_on "cmake" => :build
22   def install
23     system "cmake", "-S", ".", "-B", "build", *std_cmake_args
24     system "cmake", "--build", "build"
25     system "cmake", "--install", "build"
26   end
28   test do
29     system bin/"tmux-mem-cpu-load"
30   end
31 end