homebrew-core/Formula/tmux-mem-cpu-load.rb
Charlie Allom 2155789dec tmux-mem-cpu 2.2.1
a little status bar for your tmux session.

Closes Homebrew/homebrew#22537.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-26 22:48:27 -07:00

14 lines
360 B
Ruby

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.1.tar.gz'
sha1 'fc406fe40b0abf2abb56cad57ad8e2e3a25dae54'
depends_on 'cmake' => :build
def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end
end