mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
python/python-distutils-extra: Build with python3 by default
This commit is contained in:
parent
7bfbb23a3d
commit
5b6c14359e
2 changed files with 1 additions and 9 deletions
|
@ -2,7 +2,3 @@ Python-distutils-extra allows to easily integrate themable icons,
|
|||
scrollkeeper based documentation, and gettext based translations in
|
||||
your python install and build tools. It can be used with python's
|
||||
distutils or the enhanced setuptools.
|
||||
|
||||
To install python3 bindings run the slackbuild with PYTHON3=yes.
|
||||
|
||||
# PYTHON3=yes ./python-distutils-extra.SlackBuild
|
||||
|
|
|
@ -56,11 +56,7 @@ find -L . \
|
|||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
python setup.py install --root=$PKG
|
||||
|
||||
# Install python3 bindings for distutils-extra. Default is no.
|
||||
if [ "${PYTHON3:-no}" == "yes" ]; then
|
||||
python3 setup.py install --root=$PKG
|
||||
fi
|
||||
python3 setup.py install --root=$PKG
|
||||
|
||||
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