diff options
| author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2014-03-13 08:33:17 +0700 | 
|---|---|---|
| committer | Erik Hanson <erik@slackbuilds.org> | 2014-03-21 13:01:14 -0500 | 
| commit | 0d615a75f515937d91a92dc32dd1194c9b7ec610 (patch) | |
| tree | dc24180e5f3c8d8770e8461cc02eda22c97953bf /python/msgpack-python | |
| parent | 9bca0cc4051527d29d06eef1106a21ab65c61de1 (diff) | |
python/msgpack-python: Added Python3 support.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/msgpack-python')
| -rw-r--r-- | python/msgpack-python/msgpack-python.SlackBuild | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/python/msgpack-python/msgpack-python.SlackBuild b/python/msgpack-python/msgpack-python.SlackBuild index 827852c240..383c4660cd 100644 --- a/python/msgpack-python/msgpack-python.SlackBuild +++ b/python/msgpack-python/msgpack-python.SlackBuild @@ -25,7 +25,7 @@  PRGNAM=msgpack-python  VERSION=${VERSION:-0.4.1} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2}  TAG=${TAG:-_SBo}  if [ -z "$ARCH" ]; then @@ -72,6 +72,11 @@ find -L . \  python setup.py install --root=$PKG +# Python 3 support. +if $(python3 -c 'import sys' 2>/dev/null); 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  | 
