2013-01-09 21:44:05 +00:00
|
|
|
class Cpulimit < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "CPU usage limiter"
|
2015-05-12 22:29:43 +00:00
|
|
|
homepage "https://github.com/opsengine/cpulimit"
|
|
|
|
url "https://github.com/opsengine/cpulimit/archive/v0.1.tar.gz"
|
|
|
|
sha256 "6e653150aae18dd72f7dd93d92ee5f200eb8fef89e6c0bed28a2e3233dc29f23"
|
2013-01-09 21:44:05 +00:00
|
|
|
|
2015-05-12 22:29:43 +00:00
|
|
|
head "https://github.com/opsengine/cpulimit.git"
|
2013-01-09 21:44:05 +00:00
|
|
|
|
|
|
|
def install
|
2015-05-12 22:29:43 +00:00
|
|
|
system "make"
|
|
|
|
bin.install "src/cpulimit"
|
2013-01-09 21:44:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2015-05-12 22:29:43 +00:00
|
|
|
system *%W[#{bin}/cpulimit -l 10 ls]
|
2013-01-09 21:44:05 +00:00
|
|
|
end
|
|
|
|
end
|