18 lines
480 B
Plaintext
18 lines
480 B
Plaintext
# Description: Python tool for automating interactive applications.
|
|
# URL: http://pexpect.sourceforge.net/
|
|
# Maintainer: James Mills, prologic at shortcircuit dot net dot au
|
|
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
|
#
|
|
# Depends on: python
|
|
|
|
name=pexpect
|
|
version=2.0
|
|
release=2
|
|
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tgz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
python setup.py install --root=$PKG
|
|
chown root:root $PKG
|
|
}
|