aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/screenbrightness.rb
blob: 9eac058a103a54ad5ec0ff72b119f08c06741dd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Screenbrightness < Formula
  homepage 'https://github.com/jmstacey/screenbrightness'
  url 'https://github.com/jmstacey/screenbrightness/archive/1.1.tar.gz'
  sha1 'f9750733ac298837f519fcfedcbfec74f781bc68'

  def install
    system "make"
    system "make", "prefix=#{prefix}", "install"
  end
end