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 | # $Id: Portfile 44419 2008-12-28 09:31:44Z akitada@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python26 1.0 |
---|
6 | |
---|
7 | name py26-cython |
---|
8 | version 0.11.2 |
---|
9 | categories python devel |
---|
10 | maintainers openmaintainer akitada cornell.edu:ajb78 |
---|
11 | platforms darwin |
---|
12 | description A language for writing C extension modules for Python. |
---|
13 | long_description Cython is a language that makes writing C extensions for\ |
---|
14 | the Python language as easy as Python itself. Cython is\ |
---|
15 | based on the well-known Pyrex, but supports more cutting\ |
---|
16 | edge functionality and optimizations |
---|
17 | |
---|
18 | homepage http://www.cython.org/ |
---|
19 | master_sites ${homepage} |
---|
20 | |
---|
21 | distname Cython-${version} |
---|
22 | checksums md5 31a79d5c7365e1d18ff7be48d6c1026b \ |
---|
23 | sha1 67ae3bdfdb6f2e5ee5f54e21a295d880d3c3bb9e \ |
---|
24 | rmd160 6e4a69ff1de4e901ad416398a5453a09b229ae8d |
---|
25 | |
---|
26 | post-destroot { |
---|
27 | xinstall -m 644 -W ${worksrcpath}/Doc About.html FAQ.html \ |
---|
28 | extension_types.html index.html overview.html primes.c sharing.html \ |
---|
29 | special_methods.html ${destroot}${prefix}/share/doc/${name} |
---|
30 | xinstall -m 644 -W ${worksrcpath} INSTALL.txt README.txt\ |
---|
31 | ToDo.txt USAGE.txt ${destroot}${prefix}/share/doc/${name} |
---|
32 | } |
---|