diff options
| author | Charlie Allom | 2013-09-14 11:42:34 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-09-26 22:48:27 -0700 |
| commit | 4faafb8ed8fc08f28ed166c48f1808a209ed3c0b (patch) | |
| tree | 405b954b005772bd7d0b13b20734a38a1b19eca8 /Library/Formula | |
| parent | 1fb660b6f361e11dc87d4473e30842eb6187a219 (diff) | |
| download | homebrew-4faafb8ed8fc08f28ed166c48f1808a209ed3c0b.tar.bz2 | |
tmux-mem-cpu 2.2.1
a little status bar for your tmux session.
Closes #22537.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/tmux-mem-cpu-load.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/tmux-mem-cpu-load.rb b/Library/Formula/tmux-mem-cpu-load.rb new file mode 100644 index 000000000..ba609af52 --- /dev/null +++ b/Library/Formula/tmux-mem-cpu-load.rb @@ -0,0 +1,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.1.tar.gz' + sha1 'fc406fe40b0abf2abb56cad57ad8e2e3a25dae54' + + depends_on 'cmake' => :build + + def install + system "cmake", ".", *std_cmake_args + system "make", "install" + end +end |
