blob: 9eba586862809d44833aac69dc637f3a43df55bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Fftw <Formula
@homepage='http://www.fftw.org'
@url='http://www.fftw.org/fftw-3.2.2.tar.gz'
@md5='b616e5c91218cc778b5aa735fefb61ae'
def install
system "./configure", "--enable-shared",
"--disable-debug",
"--prefix=#{prefix}",
"--enable-threads",
"--enable-single",
"--enable-sse",
"--disable-dependency-tracking",
"--disable-fortran"
system "make install"
#wtf file?
(prefix+'share'+'info'+'dir').unlink
end
end
|