diff --git a/python/pyicu/README b/python/pyicu/README index 86100eea25..7473d2b4a8 100644 --- a/python/pyicu/README +++ b/python/pyicu/README @@ -1,2 +1,7 @@ PyICU is a Python extension wrapping IBM's International Components for Unicode C++ library (ICU). + +python3 is an optional dependency. You need to set PYTHON3=yes, +for example: + + PYTHON3=yes ./pyicu.SlackBuild diff --git a/python/pyicu/pyicu.SlackBuild b/python/pyicu/pyicu.SlackBuild index f55f1c17dd..d9f91aeb08 100644 --- a/python/pyicu/pyicu.SlackBuild +++ b/python/pyicu/pyicu.SlackBuild @@ -59,6 +59,11 @@ find -L . \ python setup.py install --root=$PKG +if [ "${PYTHON3:-no}" = "yes" ]; then + rm -rf build + 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