You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
39 lines
1.4 KiB
Tcl
39 lines
1.4 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
PortGroup python 1.0
|
|
PortGroup github 1.0
|
|
|
|
github.setup pyFFTW pyFFTW 0.10.4 v
|
|
name py-pyfftw
|
|
categories python math
|
|
platforms darwin
|
|
maintainers {aronnax @lpsinger} openmaintainer
|
|
license BSD
|
|
description pythonic python wrapper around FFTW
|
|
long_description \
|
|
A pythonic wrapper around FFTW, the FFT library, presenting a unified \
|
|
interface for all the supported transforms.
|
|
|
|
checksums rmd160 356eee0df579b256d81c9f1222503ad3d811eec4 \
|
|
sha256 c8644ccdf3ca222efa941e781adf1f21a488d8edb70c476d8df37ff6b0699d9d \
|
|
size 97745
|
|
|
|
python.versions 27 35 36
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append \
|
|
port:py${python.version}-cython
|
|
|
|
depends_lib-append port:py${python.version}-setuptools \
|
|
port:py${python.version}-numpy \
|
|
port:fftw-3 \
|
|
port:fftw-3-single \
|
|
port:fftw-3-long
|
|
|
|
livecheck.type none
|
|
} else {
|
|
# Ignore pyfftw repo's tags that have names like like "v0.10.1_docs"
|
|
github.livecheck.regex {([0-9.^"]+)}
|
|
}
|