1 | # $Id: Portfile 34540 2008-02-27 22:04:44Z jmr@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python25 1.0 |
---|
5 | |
---|
6 | name py25-pyrex |
---|
7 | version 0.9.8.4 |
---|
8 | categories python devel |
---|
9 | maintainers nomaintainer |
---|
10 | platforms darwin |
---|
11 | description A language for writing Python extension modules. |
---|
12 | long_description Pyrex lets you write code that mixes Python and C \ |
---|
13 | data types any way you want, and compiles it into \ |
---|
14 | a C extension for Python. |
---|
15 | homepage http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/ |
---|
16 | master_sites ${homepage} |
---|
17 | distname Pyrex-${version} |
---|
18 | checksums md5 100b95005bb93c8b95e96406aad661bc \ |
---|
19 | sha1 e5f5e14f06c930901c2125055456decf3e4b11ac \ |
---|
20 | rmd160 e68f672980b4981969757a92322eef74b8c18986 |
---|
21 | |
---|
22 | depends_lib port:py25-hashlib |
---|
23 | |
---|
24 | post-destroot { |
---|
25 | xinstall -m 644 -W ${worksrcpath}/Doc About.html FAQ.html \ |
---|
26 | index.html primes.c \ |
---|
27 | ${destroot}${prefix}/share/doc/${name} |
---|
28 | xinstall -m 644 -W ${worksrcpath} CHANGES.txt INSTALL.txt README.txt \ |
---|
29 | ToDo.txt USAGE.txt ${destroot}${prefix}/share/doc/${name} |
---|
30 | } |
---|