aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
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