18 lines
463 B
Plaintext
18 lines
463 B
Plaintext
# Description: Run a subprocess in a pseudo terminal
|
|
# URL: https://github.com/pexpect/ptyprocess
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-ptyprocess
|
|
version=0.7.0
|
|
release=1
|
|
source=(https://pypi.io/packages/source/p/ptyprocess/ptyprocess-$version.tar.gz)
|
|
|
|
build() {
|
|
cd ptyprocess-$version
|
|
#/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
-O1
|
|
}
|