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:
parent
938f54d0a9
commit
b70794af62
1 changed files with 16 additions and 0 deletions
16
Formula/uudeview.rb
Normal file
16
Formula/uudeview.rb
Normal 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
|
Loading…
Reference in a new issue