2009-10-24 19:08:48 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Swftools <Formula
|
|
|
|
url 'http://www.swftools.org/swftools-0.9.0.tar.gz'
|
2010-03-13 17:40:22 +00:00
|
|
|
homepage 'http://www.swftools.org'
|
2009-10-24 19:08:48 +00:00
|
|
|
md5 '946e7c692301a332745d29140bc74e55'
|
|
|
|
|
|
|
|
depends_on 'jpeg'
|
2010-04-01 18:51:45 +00:00
|
|
|
depends_on 'lame' => :optional
|
2009-10-24 19:08:48 +00:00
|
|
|
|
|
|
|
def install
|
2010-04-07 05:58:35 +00:00
|
|
|
ENV.x11 # Add to PATH for freetype-config on Snow Leopard
|
2009-10-24 19:08:48 +00:00
|
|
|
ENV.minimal_optimization
|
2010-04-01 18:51:45 +00:00
|
|
|
|
2009-10-24 19:08:48 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
2010-04-01 18:51:45 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
`swfc` segfaults under Snow Leopard.
|
|
|
|
Please persue this issue with the softare vendor:
|
|
|
|
http://lists.nongnu.org/mailman/listinfo/swftools-common
|
2010-04-01 18:51:45 +00:00
|
|
|
EOS
|
|
|
|
end
|
2009-10-24 19:08:48 +00:00
|
|
|
end
|