blob: ed620bd56712d36c77766e3ed49a20d8062b4c5f (
plain) (
blame)
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
|
[package]
name : pyfftw
version : 0.9.2
[about]
home : http://hgomersall.github.com/pyFFTW
license : GPL
summary : ${package:name}
[source]
# Name differs from the tarball... figures
fn : pyFFTW-${package:version}.tar.gz
url : https://pypi.python.org/packages/source/p/pyFFTW/${fn}
[build]
number : 1
[requirements]
build :
numpy >=1.9
fftw
cython
pkg-config [osx]
setuptools
python
run :
numpy >=1.9
fftw
python
[cbc_build]
linux :
export CFLAGS="`pkg-config --cflags fftw3`"
export LDFLAGS="`pkg-config --libs fftw3`"
python setup.py install || exit 1
windows :
# You're on your own with the libraries, it seems.
python setup.py install
if errorlevel 1 exit 1
|