blob: 0938080c9137ef9033909e63d3e88290e8284811 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
require 'formula'
class Fftw < Formula
homepage 'http://www.fftw.org'
url 'http://www.fftw.org/fftw-3.3.2.tar.gz'
sha1 '11a8c31186ff5a7d686a79a3f21b2530888e0dc2'
def install
args = ["--enable-shared",
"--disable-debug",
"--prefix=#{prefix}",
"--enable-threads",
"--disable-dependency-tracking"]
# check for gfortran
args << "--disable-fortran" unless which 'gfortran'
# single precision
# enable-sse only works with single
system "./configure", "--enable-single",
"--enable-sse",
*args
system "make install"
# clean up so we can compile the double precision variant
system "make clean"
# double precision
# enable-sse2 only works with double precision (default)
system "./configure", "--enable-sse2", *args
system "make install"
# clean up so we can compile the long-double precision variant
system "make clean"
# long-double precision
# no SIMD optimization available
system "./configure", "--enable-long-double", *args
system "make install"
end
end
|