2009-10-24 19:08:48 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2012-04-09 07:20:13 +00:00
|
|
|
class Xpdf < Formula
|
|
|
|
url 'ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.03.tar.gz', :using => :nounzip
|
|
|
|
sha1 '499423e8a795e0efd76ca798239eb4d0d52fe248'
|
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Swftools < Formula
|
2010-03-13 17:40:22 +00:00
|
|
|
homepage 'http://www.swftools.org'
|
2012-04-09 07:20:13 +00:00
|
|
|
url 'http://www.swftools.org/swftools-0.9.2.tar.gz'
|
|
|
|
sha1 'd7cf8874c4187d2edd3e40d20ba325ca17b91973'
|
2009-10-24 19:08:48 +00:00
|
|
|
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :x11
|
2009-10-24 19:08:48 +00:00
|
|
|
depends_on 'jpeg'
|
2012-04-09 07:20:13 +00:00
|
|
|
depends_on 'lame'
|
2012-05-21 21:19:19 +00:00
|
|
|
depends_on 'giflib'
|
2012-04-09 07:20:13 +00:00
|
|
|
depends_on 'fftw'
|
|
|
|
|
|
|
|
def patches
|
|
|
|
# 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.
|
|
|
|
DATA
|
|
|
|
end
|
2009-10-24 19:08:48 +00:00
|
|
|
|
|
|
|
def install
|
2012-04-09 07:20:13 +00:00
|
|
|
Xpdf.new.brew { (buildpath+'lib/pdf').install Dir['*'] }
|
2009-10-24 19:08:48 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
2012-04-09 07:20:13 +00:00
|
|
|
|
|
|
|
__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);
|