diff options
Diffstat (limited to 'python/pytz/pytz.SlackBuild')
-rw-r--r-- | python/pytz/pytz.SlackBuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/pytz/pytz.SlackBuild b/python/pytz/pytz.SlackBuild index c9ee62ae6d..58f5207360 100644 --- a/python/pytz/pytz.SlackBuild +++ b/python/pytz/pytz.SlackBuild @@ -57,6 +57,11 @@ find -L . \ python setup.py install --root=$PKG +# Install python3 bindings. Default is no. +if [ "${PYTHON3:-no}" = "yes" ]; then + python3 setup.py install --root=$PKG +fi + find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |