diff options
author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2017-01-03 08:24:23 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-01-07 08:49:27 +0700 |
commit | fd7ae9710f6e53dd8a5616b33fb677b74a47d803 (patch) | |
tree | 870b73653ead8d9e78cfddbbb1c80cb01b3a9556 /python/python-distro | |
parent | 107e1e52bc0a1484cc266ef492b9b6f7ad927d1d (diff) | |
download | slackbuilds-fd7ae9710f6e53dd8a5616b33fb677b74a47d803.tar.gz |
python/python-distro: Add python3 support.
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
Diffstat (limited to 'python/python-distro')
-rw-r--r-- | python/python-distro/python-distro.SlackBuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/python-distro/python-distro.SlackBuild b/python/python-distro/python-distro.SlackBuild index d6216fd8ab..d894c064be 100644 --- a/python/python-distro/python-distro.SlackBuild +++ b/python/python-distro/python-distro.SlackBuild @@ -72,6 +72,11 @@ find -L . \ python setup.py install --root=$PKG +# Python 3 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 |