Ticket #51448: Portfile-0.12.0

File Portfile-0.12.0, 1.5 KB (added by raimue (Rainer Müller), 8 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5PortGroup           python 1.0
6PortGroup           github 1.0
7
8github.setup        pyFAI pyFAI 0.12.0 v
9name                py-pyFAI
10platforms           darwin
11maintainers         ill.fr:coquelleni \
12                    openmaintainer 
13license             GPL-3+
14
15description         Azimuthal Integration library
16long_description    pyFAI is an azimuthal integration library that tries to be fast (as fast as C\
17                    and even more using OpenCL and GPU).\
18                    It is based on histogramming of the 2theta/Q positions of each (center of)\
19                    pixel weighted by the intensity of each pixel, but parallel version use a\
20                    SparseMatrix-DenseVector multiplication.
21
22checksums           rmd160  49580e8a53d3afb086a422b85058a2e64e06c249 \
23                    sha256  dcb0f4a88022d9487ca0dd9a2f332b472e41928e0054355ac1ff935d03680784
24
25python.versions     27 34 35
26universal_variant   no
27
28if {${name} ne ${subport}} {
29    depends_build-append    port:py${python.version}-cython
30
31    depends_lib-append      port:py${python.version}-numpy \
32                            port:py${python.version}-scipy \
33                            port:py${python.version}-matplotlib \
34                            port:py${python.version}-h5py \
35                            port:py${python.version}-pyopencl
36}