1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python25 1.0 |
---|
5 | |
---|
6 | name py25-pexpect |
---|
7 | version 2.1 |
---|
8 | categories python |
---|
9 | platforms darwin |
---|
10 | |
---|
11 | maintainers ramercer@gmail.com openmaintainer@macports.org |
---|
12 | description python module for better controlling other applications |
---|
13 | long_description Pexpect makes Python a better tool for controlling \ |
---|
14 | other applications. It is a pure Python module for spawning child \ |
---|
15 | applications, controlling them and responding to expected patterns in \ |
---|
16 | their output. Pexpect works like Don Libes Expect. Pexpect allows your \ |
---|
17 | script to spawn a child application and control it as if a human were \ |
---|
18 | typing commands. |
---|
19 | |
---|
20 | homepage http://pexpect.sourceforge.net/ |
---|
21 | master_sites sourceforge:pexpect |
---|
22 | distfiles pexpect-${version}.tar.gz |
---|
23 | |
---|
24 | checksums md5 fd3d67ac085332f074cd665424dcd631 \ |
---|
25 | sha1 2ffc729a9e6888f5aeb1f357750d5ec1143584b0 \ |
---|
26 | rmd160 56f8432f592e07bfc8a22b79ebac06a4e980559a |
---|
27 | |
---|
28 | worksrcdir pexpect-${version} |
---|
29 | |
---|
30 | post-destroot { |
---|
31 | xinstall -m 644 -W ${worksrcpath} README \ |
---|
32 | ${destroot}${prefix}/share/doc/${name} |
---|
33 | } |
---|