blob: 8fa3136eb0036c1c6b8d7bf066a56a36492621e9 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | class Screenbrightness < Formula
  homepage "https://github.com/jmstacey/screenbrightness"
  url "https://github.com/jmstacey/screenbrightness/archive/1.1.tar.gz"
  sha1 "f9750733ac298837f519fcfedcbfec74f781bc68"
  bottle do
    cellar :any
    sha1 "af2ab5c5ba668e9be32b95ed3ac581423e14b1b8" => :yosemite
    sha1 "c780916b31a50d6a599b1c6238548a8db3a008a1" => :mavericks
    sha1 "9cf03ce35a3cb24a25bd28b9a213963f64a3dfdd" => :mountain_lion
  end
  def install
    system "make"
    system "make", "prefix=#{prefix}", "install"
  end
  test do
    system "#{bin}/screenbrightness", "-l"
  end
end
 |