diff options
Diffstat (limited to 'pexpect.morph')
-rw-r--r-- | pexpect.morph | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pexpect.morph b/pexpect.morph index 9e8c2b4..e7f4974 100644 --- a/pexpect.morph +++ b/pexpect.morph @@ -2,7 +2,9 @@ name: pexpect description: | Pexpect is a pure Python module that accomplishes behaviour similar to Expect kind: chunk -build-commands: +configure-commands: - 'cd pexpect && make' +build-commands: +- 'cd pexpect && python setup.py build' install-commands: -- 'cd pexpect && make DESTDIR="$DESTDIR" install' +- 'cd pexpect && python setup.py install --prefix "$PREFIX" --root "$DESTDIR"' |