homebrew-core/Formula/uudeview.rb

19 lines
453 B
Ruby
Raw Normal View History

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
2012-03-11 01:07:50 +00:00
system "./configure", "--prefix=#{prefix}",
"--mandir=#{man}",
"--disable-tcl"
system "make install"
end
def test
2012-01-28 18:59:15 +00:00
system "#{bin}/uudeview -V"
end
end