2011-12-29 21:10:57 +00:00
|
|
|
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'
|
2012-06-27 22:45:24 +00:00
|
|
|
sha1 '2c6ab7d355b545218bd0877d598bd5327d9fd125'
|
|
|
|
|
|
|
|
fails_with :clang do
|
|
|
|
build 318
|
|
|
|
cause "inews.c:195:4: error: non-void function 'append_signature' should return a value [-Wreturn-type]"
|
|
|
|
end
|
2011-12-29 21:10:57 +00:00
|
|
|
|
|
|
|
def install
|
2012-03-11 01:07:50 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}",
|
|
|
|
"--disable-tcl"
|
2011-12-29 21:10:57 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/uudeview", "-V"
|
2011-12-29 21:10:57 +00:00
|
|
|
end
|
|
|
|
end
|