e434dd8df9
Closes Homebrew/homebrew#26623. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
22 lines
593 B
Ruby
22 lines
593 B
Ruby
require "formula"
|
|
|
|
class Cputhrottle < Formula
|
|
homepage "http://www.willnolan.com/cputhrottle/cputhrottle.html"
|
|
url "http://www.willnolan.com/cputhrottle/cputhrottle.tar.gz"
|
|
sha1 "e88c7264cb09399f2e4c54f9d10978ffbb99078b"
|
|
version "20100515"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "3524fce7418022bea4ea10b2c9e9b794a1876201" => :mavericks
|
|
sha1 "aeb5297fa772631d121d0e480e26e40aa82af5e9" => :mountain_lion
|
|
sha1 "346f0b9b01e890938afe4571fc810dd8afba5664" => :lion
|
|
end
|
|
|
|
depends_on "boost" => :build
|
|
|
|
def install
|
|
system "make", "all"
|
|
bin.install "cputhrottle"
|
|
end
|
|
end
|