1 | # $Id: Portfile 34537 2008-02-27 21:51:34Z jmr@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python24 1.0 |
---|
5 | |
---|
6 | name py-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 | post-destroot { |
---|
23 | xinstall -m 644 -W ${worksrcpath}/Doc About.html FAQ.html \ |
---|
24 | index.html primes.c \ |
---|
25 | ${destroot}${prefix}/share/doc/${name} |
---|
26 | xinstall -m 644 -W ${worksrcpath} CHANGES.txt INSTALL.txt README.txt \ |
---|
27 | ToDo.txt USAGE.txt ${destroot}${prefix}/share/doc/${name} |
---|
28 | } |
---|