diff options
| author | Pete Baker | 2011-07-10 09:47:27 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2011-09-03 10:16:12 -0700 |
| commit | c721efbd4478d0b3dfdf74b6323de009f49ba13a (patch) | |
| tree | 9a8134e6ac9bfb212f176359e32f875f13ebdfe7 /Library | |
| parent | eb7b4e2e9d0924468b5312db3af20731a77edd97 (diff) | |
| download | homebrew-c721efbd4478d0b3dfdf74b6323de009f49ba13a.tar.bz2 | |
sersniff 0.0.5
sersniff is a simple program to tunnel/sniff between 2 serial ports.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/sersniff.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/sersniff.rb b/Library/Formula/sersniff.rb new file mode 100644 index 000000000..3a1617281 --- /dev/null +++ b/Library/Formula/sersniff.rb @@ -0,0 +1,14 @@ +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 |
