aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/uudeview.rb
blob: c4dd1cf8211bdb97dd706f7f68f7a1cec360afe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 "#{bin}/uudeview -V"
  end
end