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