diff options
-rw-r--r-- | python/python-tlslite/python-tlslite.SlackBuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/python/python-tlslite/python-tlslite.SlackBuild b/python/python-tlslite/python-tlslite.SlackBuild index 2d780c1244..65cf093796 100644 --- a/python/python-tlslite/python-tlslite.SlackBuild +++ b/python/python-tlslite/python-tlslite.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for python-tlslite -# Copyright 2015-2016 Willy Sudiarto Raharjo <willysr@slackbuilds.org> +# Copyright 2015-2018 Willy Sudiarto Raharjo <willysr@slackbuilds.org> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -55,7 +55,7 @@ else LIBDIRSUFFIX="" fi -set -e +set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT @@ -72,6 +72,11 @@ find -L . \ python setup.py install --root=$PKG +# Add Python3 support +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 |