aboutsummaryrefslogtreecommitdiff
path: root/pyfftw/pyfftw.ini
blob: 989ce0f5db5b49bc9a9c03f33ce3c7f82cc47797 (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
41
42
43
44
[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

[test]
imports:
    pyfftw

[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