homebrew-core/Formula/swftools.rb
2015-07-03 16:13:53 +01:00

64 lines
2.4 KiB
Ruby

require 'formula'
class Swftools < Formula
desc "SWF manipulation and generation tools"
homepage 'http://www.swftools.org'
url 'http://www.swftools.org/swftools-0.9.2.tar.gz'
sha256 'bf6891bfc6bf535a1a99a485478f7896ebacbe3bbf545ba551298080a26f01f1'
revision 1
bottle do
sha256 "f672348156459f385c6b08ed67c7055cd1cb9ee9dee8d868777596a57ac01a7f" => :yosemite
sha256 "7f18b7dae61164cd47eb34712884dea4de8df821d51ce955c6c33f36c165eaa1" => :mavericks
sha256 "900f2dd522f48c9ea72a3bf8dba53a8f0f35a4867dc68fab5dc85921a769c206" => :mountain_lion
end
option 'with-xpdf', 'Build with PDF support'
depends_on :x11 if build.with? "xpdf"
depends_on 'jpeg' => :optional
depends_on 'lame' => :optional
depends_on 'giflib' => :optional
depends_on 'fftw' => :optional
resource 'xpdf' do
url 'ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.04.tar.gz', :using => :nounzip
sha1 'b9b1dbb0335742a09d0442c60fd02f4f934618bd'
end
# Fixes a conftest for libfftwf.dylib that mistakenly calls fftw_malloc()
# rather than fftwf_malloc(). Reported upstream to their mailing list:
# http://lists.nongnu.org/archive/html/swftools-common/2012-04/msg00014.html
# Patch is merged upstream. Remove at swftools-0.9.3.
patch :DATA
# Fix compile error, via MacPorts: https://trac.macports.org/ticket/34553
patch :p0 do
url "https://trac.macports.org/export/96933/trunk/dports/graphics/swftools/files/patch-src_gif2swf.c.diff"
sha256 "75daa35a292a25d05b45effc5b734e421b437bad22479837e0ee5cbd7a05e73e"
end
def install
(buildpath+'lib/pdf').install resource('xpdf') if build.with? "xpdf"
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
test do
system "#{bin}/png2swf", "swftools_test.swf", test_fixtures("test.png")
end
end
__END__
--- a/configure 2012-04-08 10:25:35.000000000 -0700
+++ b/configure 2012-04-09 17:42:10.000000000 -0700
@@ -6243,7 +6243,7 @@
int main()
{
- char*data = fftw_malloc(sizeof(fftwf_complex)*600*800);
+ char*data = fftwf_malloc(sizeof(fftwf_complex)*600*800);
fftwf_plan plan = fftwf_plan_dft_2d(600, 800, (fftwf_complex*)data, (fftwf_complex*)data, FFTW_FORWARD, FFTW_ESTIMATE);
plan = fftwf_plan_dft_r2c_2d(600, 800, (float*)data, (fftwf_complex*)data, FFTW_ESTIMATE);
plan = fftwf_plan_dft_c2r_2d(600, 800, (fftwf_complex*)data, (float*)data, FFTW_ESTIMATE);