diff options
Diffstat (limited to 'python/polib/polib.SlackBuild')
-rw-r--r-- | python/polib/polib.SlackBuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/polib/polib.SlackBuild b/python/polib/polib.SlackBuild index 397e8e209003..a57a216cb235 100644 --- a/python/polib/polib.SlackBuild +++ b/python/polib/polib.SlackBuild @@ -66,6 +66,11 @@ find -L . \ python setup.py install --root=$PKG +# Install python3 bindings for polib. Default is no. +if [ "${PYTHON3:-no}" == "yes" ]; 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 |