blob: f5d77e72a5c3c78804097aa8af0cdfd83321ad01 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | 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
 |