mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
python/polib: Add python3 support.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
ddc55bb6e6
commit
9a2fa69055
2 changed files with 9 additions and 0 deletions
|
@ -8,4 +8,8 @@ from scratch.
|
|||
polib supports out of the box any version of python ranging from
|
||||
2.4 to latest 3.X version.
|
||||
|
||||
To install python3 bindings run the slackbuild with PYTHON3=yes.
|
||||
|
||||
# PYTHON3=yes ./polib.SlackBuild
|
||||
|
||||
Optional dependency: Sphinx
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue