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
|
|
|
|
ENV.minimal_optimization
|
2010-04-01 18:51:45 +00:00
|
|
|
|
|
|
|
# Need to add freetype-config and other X11 utils to the path
|
|
|
|
ENV.x11
|
|
|
|
ENV.append 'PATH', '/usr/x11/bin', ':'
|
|
|
|
|
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
|
|
|
|
|
|
|
def caveats
|
2010-05-01 21:11:57 +00:00
|
|
|
<<-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
|