aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Wooldridge (z0mbix)2011-12-29 21:10:57 +0000
committerAdam Vandenberg2012-01-28 10:58:10 -0800
commitfb6174236f74e06c4eabd40802337329115657b2 (patch)
tree9c156f24074aa4be59ed2edc09f073968f69122b /Library/Formula
parent9db99f2d607f11857401923d81926d6ed70ca8a6 (diff)
downloadhomebrew-fb6174236f74e06c4eabd40802337329115657b2.tar.bz2
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>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/uudeview.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/uudeview.rb b/Library/Formula/uudeview.rb
new file mode 100644
index 000000000..65a192c83
--- /dev/null
+++ b/Library/Formula/uudeview.rb
@@ -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