diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-01-04 08:20:32 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-01-06 06:41:43 +0700 |
commit | f563de6ae73d60cae0eedc15cb7ff3d3c970ffe2 (patch) | |
tree | cae0f832299fef4d6ce9a27d4246a81ed47315d5 | |
parent | a4e4e74313d7bac5a68340317f59c86dca8ee6b9 (diff) | |
download | slackbuilds-f563de6ae73d60cae0eedc15cb7ff3d3c970ffe2.tar.gz |
python/python-qrcode: Add python3 support.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | python/python-qrcode/python-qrcode.SlackBuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/python/python-qrcode/python-qrcode.SlackBuild b/python/python-qrcode/python-qrcode.SlackBuild index 5bd9cb9da2..f240f72f61 100644 --- a/python/python-qrcode/python-qrcode.SlackBuild +++ b/python/python-qrcode/python-qrcode.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for python-qrcode -# 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 @@ -74,6 +74,10 @@ sed -i "s|share/man/man1|man/man1|" setup.py python 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 |