homebrew-core/Formula/uudeview.rb
David Wooldridge (z0mbix) b70794af62 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>
2012-01-28 10:58:10 -08:00

16 lines
393 B
Ruby

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