diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-01-04 08:17:34 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-01-04 08:17:34 +0700 |
commit | 4fa9eb84db445c775d33e696a3e8de24108d3263 (patch) | |
tree | b940a06da8a40d6ddc8627bbdd4ba2b449f9db56 /python/pyaes | |
parent | bb86a5c08149834695fc74886bdf340b23d65a5a (diff) | |
download | slackbuilds-4fa9eb84db445c775d33e696a3e8de24108d3263.tar.gz |
python/pyaes: Add python3 support.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/pyaes')
-rw-r--r-- | python/pyaes/pyaes.SlackBuild | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/pyaes/pyaes.SlackBuild b/python/pyaes/pyaes.SlackBuild index 6e072aa659..17ec8015db 100644 --- a/python/pyaes/pyaes.SlackBuild +++ b/python/pyaes/pyaes.SlackBuild @@ -71,6 +71,10 @@ find -L . \ 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 |