cd251fa522
- This still fails with clang @ XCode-4.5.1, clang-4.1 build 421. - Update the formula. - Works with superenv Closes Homebrew/homebrew#15426. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
23 lines
618 B
Ruby
23 lines
618 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'
|
|
sha1 '2c6ab7d355b545218bd0877d598bd5327d9fd125'
|
|
|
|
fails_with :clang do
|
|
build 421
|
|
cause "inews.c:195:4: error: non-void function 'append_signature' should return a value [-Wreturn-type]"
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--mandir=#{man}",
|
|
"--disable-tcl"
|
|
system "make install"
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/uudeview", "-V"
|
|
end
|
|
end
|