b70794af62
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>
16 lines
393 B
Ruby
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
|