uudeview 0.5.20

UUDeview is a program that helps you transmit and receive binary files
over the Internet, using electronic mail or newsgroups. The UUDeview
package includes both an encoder and a decoder. The decoder
automatically detects the type of encoding used, offering MIME's Base64
and BinHex as well as the popular uuencoding and the less frequently
used xxencoding methods.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
David Wooldridge (z0mbix) 2011-12-29 21:10:57 +00:00 committed by Adam Vandenberg
parent 938f54d0a9
commit b70794af62

16
Formula/uudeview.rb Normal file
View file

@ -0,0 +1,16 @@
require 'formula'
class Uudeview < Formula
homepage 'http://www.fpx.de/fp/Software/UUDeview/'
url 'http://www.fpx.de/fp/Software/UUDeview/download/uudeview-0.5.20.tar.gz'
md5 '0161abaec3658095044601eae82bbc5b'
def install
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}","--disable-tcl"
system "make install"
end
def test
system "uudeview -V"
end
end