196231a078
Closes Homebrew/homebrew#25618. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
324 B
Ruby
12 lines
324 B
Ruby
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
|