From a5779280986044ceb592e21572fde23360f5754c Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Thu, 1 Apr 2010 11:51:45 -0700 Subject: [PATCH] Update swftools and add note about its 10.6 brokenness. --- Formula/swftools.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Formula/swftools.rb b/Formula/swftools.rb index 5034e7a957..950b1a6e2d 100644 --- a/Formula/swftools.rb +++ b/Formula/swftools.rb @@ -6,11 +6,25 @@ class Swftools :optional def install ENV.minimal_optimization + + # Need to add freetype-config and other X11 utils to the path + ENV.x11 + ENV.append 'PATH', '/usr/x11/bin', ':' + system "./configure", "--prefix=#{prefix}" system "make" system "make install" end + + def caveats + <<-EOS + swfc segfaults under Snow Leopard. Please persue this issue + with the softare vendor: + http://lists.nongnu.org/mailman/listinfo/swftools-common + EOS + end end