Ticket #19688: Portfile

File Portfile, 1.4 KB (added by miles@…, 15 years ago)

bump to 0.11.2

Line 
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
4PortSystem          1.0
5PortGroup           python26 1.0
6
7name                py26-cython
8version             0.11.2
9categories          python devel
10maintainers         openmaintainer akitada cornell.edu:ajb78
11platforms           darwin
12description         A language for writing C extension modules for Python.
13long_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
18homepage            http://www.cython.org/
19master_sites        ${homepage}
20
21distname            Cython-${version}
22checksums           md5     31a79d5c7365e1d18ff7be48d6c1026b \
23                    sha1    67ae3bdfdb6f2e5ee5f54e21a295d880d3c3bb9e \
24                    rmd160  6e4a69ff1de4e901ad416398a5453a09b229ae8d
25
26post-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}