1 | # $Id: Portfile 114324 2013-12-05 08:44:51Z ryandesign@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | |
---|
6 | name py-mpmath |
---|
7 | version 0.18 |
---|
8 | revision 0 |
---|
9 | categories-append math |
---|
10 | license BSD |
---|
11 | maintainers nomaintainer |
---|
12 | description Arbitrary-precision floating-point library for Python |
---|
13 | long_description \ |
---|
14 | Mpmath is a pure-Python library for arbitrary-precision floating-point \ |
---|
15 | arithmetic that implements an extensive set of mathematical functions. |
---|
16 | |
---|
17 | platforms darwin |
---|
18 | supported_archs noarch |
---|
19 | |
---|
20 | homepage http://code.google.com/p/mpmath/ |
---|
21 | master_sites googlecode:mpmath |
---|
22 | distname mpmath-${version} |
---|
23 | |
---|
24 | checksums md5 e2e7a7932969f52f25b7e19d8f0438bd \ |
---|
25 | sha1 b103be6ab76aa2747f5b5d46b9a097b97a191dee \ |
---|
26 | rmd160 83979e4e4b9c11158d2a94c52302620ad94d63e5 |
---|
27 | |
---|
28 | python.versions 25 26 27 |
---|
29 | |
---|
30 | if {${name} ne ${subport}} { |
---|
31 | post-destroot { |
---|
32 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${subport} |
---|
33 | xinstall -m 644 -W ${worksrcpath} CHANGES LICENSE \ |
---|
34 | ${destroot}${prefix}/share/doc/${subport} |
---|
35 | } |
---|
36 | } |
---|