require 'formula' class Ser2net < Formula homepage 'http://ser2net.sourceforge.net' url 'http://downloads.sourceforge.net/project/ser2net/ser2net/2.7/ser2net-2.7.tar.gz' sha1 'ebceb41479ce5e33f400b1564d420dc12b6b44f6' def install ENV.deparallelize # Fix etc location inreplace ["ser2net.c", "ser2net.8"], "/etc/ser2net.conf", "#{etc}/ser2net.conf" system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--mandir=#{man}" system "make install" etc.install 'ser2net.conf' end def caveats; <<-EOS.undent Serial to Network Proxy (ser2net) ser2net provides a way for a user to connect from a network connection to a serial port. It provides all the serial port setup, a configuration file to configure the ports, a control login for modifying port parameters, monitoring ports, and controlling ports. To configure ser2net, edit the example configuration in #{etc}/ser2net.conf To start manually ser2net server: ser2net -p 12345 where 12345 is the port on which sernet will listen to control commands You can start ser2net automatically on login running as your user with: mkdir -p ~/Library/LaunchAgents cp #{plist_path} ~/Library/LaunchAgents/ launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename} EOS end def startup_plist return <<-EOPLIST Label #{plist_name} RunAtLoad KeepAlive UserName #{`whoami`.chomp} ProgramArguments #{HOMEBREW_PREFIX}/sbin/ser2net -p 12345 WorkingDirectory #{HOMEBREW_PREFIX} EOPLIST end end