4e59b8ed68
sersniff is a simple program to tunnel/sniff between 2 serial ports. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
359 B
Ruby
14 lines
359 B
Ruby
require 'formula'
|
|
|
|
class Sersniff < Formula
|
|
url 'http://www.earth.li/projectpurple/files/sersniff-0.0.5.tar.gz'
|
|
homepage 'http://www.earth.li/projectpurple/progs/sersniff.html'
|
|
md5 '5caf3262442b5e82c3de820ce3f76fa2'
|
|
head 'git://the.earth.li/sersniff'
|
|
|
|
def install
|
|
system "make"
|
|
bin.install "sersniff"
|
|
man8.install "sersniff.8"
|
|
end
|
|
end
|