From 2edaba7f84e37e8eb58dbb9281faa4627369fec2 Mon Sep 17 00:00:00 2001 From: Jerome Bernard Date: Wed, 15 Feb 2012 14:07:37 +0100 Subject: ser2net 2.7 Signed-off-by: Adam Vandenberg --- Library/Formula/ser2net.rb | 70 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 Library/Formula/ser2net.rb (limited to 'Library') diff --git a/Library/Formula/ser2net.rb b/Library/Formula/ser2net.rb new file mode 100644 index 000000000..4317ede52 --- /dev/null +++ b/Library/Formula/ser2net.rb @@ -0,0 +1,70 @@ +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' + md5 '22977477789868923a5de09a85e847dd' + + 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' + + plist_path.write startup_plist + plist_path.chmod 0644 + 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 -- cgit v1.2.3