class Gpsd < Formula desc "Global Positioning System (GPS) daemon" homepage "http://catb.org/gpsd/" url "https://download.savannah.gnu.org/releases/gpsd/gpsd-3.17.tar.gz" sha256 "68e0dbecfb5831997f8b3d6ba48aed812eb465d8c0089420ab68f9ce4d85e77a" bottle do cellar :any rebuild 1 sha256 "22814a24acec9db78a5a0a13aa2d73773e15c648f3dd008bcbd4f088515c28ac" => :catalina sha256 "000a6985fc4a8f295c2729a04cf0662f68370401afb573c62b051a1b2495da7f" => :mojave sha256 "8259d06ad29227d59f70b9c4d84d20c764486fd7e6217bbf023fd003d3afe897" => :high_sierra sha256 "a1840e937a0abdcd847abb9a3c9d735650fcb77088c97189c72abb2470dacdad" => :sierra end depends_on "scons" => :build def install system "scons", "chrpath=False", "python=False", "strip=False", "prefix=#{prefix}/" system "scons", "install" end def caveats; <<~EOS gpsd does not automatically detect GPS device addresses. Once started, you need to force it to connect to your GPS: GPSD_SOCKET="#{var}/gpsd.sock" #{sbin}/gpsdctl add /dev/tty.usbserial-XYZ EOS end plist_options :manual => "#{HOMEBREW_PREFIX}/sbin/gpsd -N -F #{HOMEBREW_PREFIX}/var/gpsd.sock /dev/tty.usbserial-XYZ" def plist; <<~EOS Label #{plist_name} ProgramArguments #{opt_sbin}/gpsd -N -F #{var}/gpsd.sock RunAtLoad KeepAlive WorkingDirectory #{HOMEBREW_PREFIX} StandardOutPath #{var}/log/gpsd.log StandardErrorPath #{var}/log/gpsd.log EOS end test do assert_match version.to_s, shell_output("#{sbin}/gpsd -V") end end