homebrew-core/Formula/uudeview.rb
Jack Nagel 63cde03be4 Fix more quoting issues
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-15 17:08:57 -05:00

18 lines
456 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 "#{bin}/uudeview", "-V"
end
end