1 | # -*- 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 |
---|
2 | |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | PortGroup github 1.0 |
---|
7 | |
---|
8 | github.setup scikit-umfpack scikit-umfpack 0.2.3 |
---|
9 | |
---|
10 | name py-scikit-umfpack |
---|
11 | categories-append math |
---|
12 | platforms darwin |
---|
13 | license BSD |
---|
14 | maintainers gmail.com:jjstickel openmaintainer |
---|
15 | |
---|
16 | description scikit-umfpack provides wrapper of UMFPACK sparse direct solver to SciPy. |
---|
17 | long_description ${description} |
---|
18 | |
---|
19 | checksums rmd160 e6b832e963862cfa93b3072c34fa2a1a481bb6e8 \ |
---|
20 | sha256 4826256848b39d86111b8e3783a0e64b85d4cf251c4f41c88f355136379b8190 |
---|
21 | |
---|
22 | python.versions 27 35 |
---|
23 | |
---|
24 | if {${name} ne ${subport}} { |
---|
25 | depends_build-append \ |
---|
26 | port:py${python.version}-setuptools \ |
---|
27 | port:swig-python |
---|
28 | |
---|
29 | depends_lib-append \ |
---|
30 | port:py${python.version}-scipy \ |
---|
31 | port:SuiteSparse |
---|
32 | } |
---|