Ticket #12825: Portfile

File Portfile, 1.1 KB (added by skymoo (Adam Mercer), 17 years ago)

Portfile for python/py25-pexpect 2.1

Line 
1# $Id$
2
3PortSystem    1.0
4PortGroup     python25 1.0
5
6name          py25-pexpect
7version       2.1
8categories    python
9platforms     darwin
10
11maintainers   ramercer@gmail.com openmaintainer@macports.org
12description   python module for better controlling other applications
13long_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
20homepage      http://pexpect.sourceforge.net/
21master_sites  sourceforge:pexpect
22distfiles     pexpect-${version}.tar.gz
23
24checksums     md5 fd3d67ac085332f074cd665424dcd631 \
25              sha1 2ffc729a9e6888f5aeb1f357750d5ec1143584b0 \
26              rmd160 56f8432f592e07bfc8a22b79ebac06a4e980559a
27
28worksrcdir    pexpect-${version}
29
30post-destroot {
31  xinstall -m 644 -W ${worksrcpath} README \
32    ${destroot}${prefix}/share/doc/${name}
33}