class Redshift < Formula desc "Adjust color temperature of your screen according to your surroundings" homepage "http://jonls.dk/redshift/" url "https://github.com/jonls/redshift/releases/download/v1.11/redshift-1.11.tar.xz" sha256 "10e350f93951c0521dd6f103d67a485972c307214f036e009acea2978fe4f359" bottle do sha256 "654082b1aefb05db5833fa3dfc8b4313525c5ff4bb002de79c1793d998713afe" => :sierra sha256 "f8fc6b6b2279982aefc06a03571c8de76df9542808558e542e87d7e28187d58f" => :el_capitan sha256 "b51cd606ac04a3709ca9a02196c26ee6b79b1b32d976ef01155db382f5145f81" => :yosemite sha256 "9d151b44efdd166ae4239af7dff907a4868441c126f7fd11aa69a53e9d39de7a" => :mavericks end head do url "https://github.com/jonls/redshift.git" depends_on "automake" => :build depends_on "autoconf" => :build depends_on "libtool" => :build end depends_on "pkg-config" => :build depends_on "intltool" => :build depends_on "gettext" depends_on "glib" def install args = %W[ --prefix=#{prefix} --enable-corelocation --disable-silent-rules --disable-dependency-tracking --disable-geoclue --disable-geoclue2 --enable-quartz --with-systemduserunitdir=no --disable-gui ] system "./bootstrap" if build.head? system "./configure", *args system "make", "install" pkgshare.install "redshift.conf.sample" end def caveats; <<-EOS.undent A sample .conf file has been installed to #{opt_pkgshare}. Please note redshift expects to read its configuration file from #{ENV["HOME"]}/.config EOS end plist_options :manual => "redshift" def plist; <<-EOS.undent Label #{plist_name} ProgramArguments #{opt_bin}/redshift KeepAlive RunAtLoad StandardErrorPath /dev/null StandardOutPath /dev/null EOS end test do system "#{bin}/redshift", "-V" end end