diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-05-07 22:15:31 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-05-07 22:15:31 +0700 |
commit | ab032da3b25846d2b3b6514a83cc3a71af2b9e18 (patch) | |
tree | 05cc96c0213b0b31a26a8e6466a660560cb5e733 /python/python-distutils-extra/python-distutils-extra.SlackBuild | |
parent | 504d46297fc1a4b7144ec8cb6dc93646e9b75265 (diff) | |
download | slackbuilds-ab032da3b25846d2b3b6514a83cc3a71af2b9e18.tar.gz |
python/python-distutils-extra: Add python3 support.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python-distutils-extra/python-distutils-extra.SlackBuild')
-rw-r--r-- | python/python-distutils-extra/python-distutils-extra.SlackBuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/python-distutils-extra/python-distutils-extra.SlackBuild b/python/python-distutils-extra/python-distutils-extra.SlackBuild index 1109d09f63..9e25ef75a7 100644 --- a/python/python-distutils-extra/python-distutils-extra.SlackBuild +++ b/python/python-distutils-extra/python-distutils-extra.SlackBuild @@ -57,6 +57,11 @@ find -L . \ 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 + 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 |