diff options
author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2014-01-25 01:36:20 +0700 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-01-29 23:21:13 -0600 |
commit | 5a4b9ca0bf730dde38e54845ca6ec18455fb8c8e (patch) | |
tree | 1d7797e12d0eb7da1504c493bb08fea4fe9e9074 | |
parent | 56c7ce10fe41b26ac7efd90ad6e9dbb19a494370 (diff) | |
download | slackbuilds-5a4b9ca0bf730dde38e54845ca6ec18455fb8c8e.tar.gz |
python/termcolor: Added Python3 support.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | python/termcolor/termcolor.SlackBuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/python/termcolor/termcolor.SlackBuild b/python/termcolor/termcolor.SlackBuild index 2934bada62..1619fc56eb 100644 --- a/python/termcolor/termcolor.SlackBuild +++ b/python/termcolor/termcolor.SlackBuild @@ -55,7 +55,7 @@ else LIBDIRSUFFIX="" fi -set -e +set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT @@ -70,10 +70,11 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - python setup.py install --root=$PKG -# for Python 3 -# python3 setup.py install --root=$PKG + +if $(python3 -c 'import sys' 2>/dev/null); then + python3 setup.py install --root=$PKG +fi find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |