aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tmux-mem-cpu-load.rb
blob: 4c67228dfaabe9cfa7f756a7d96cf15698383192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require "formula"

class TmuxMemCpuLoad < Formula
  homepage "https://github.com/thewtex/tmux-mem-cpu-load"
  url "https://github.com/thewtex/tmux-mem-cpu-load/archive/v2.2.2.tar.gz"
  sha1 "5c49317b072dec710268d3dafb205b4aeb0c1a5c"

  depends_on "cmake" => :build

  def install
    system "cmake", ".", *std_cmake_args
    system "make", "install"
  end
end