diff options
author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2016-11-26 11:34:20 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-12-03 07:21:34 +0700 |
commit | 2a31ca7470d58c95ab7d42c5c9453991d2b0714d (patch) | |
tree | cbd325f1347d4c96d9a87b8f6bb9e0ca615057ca | |
parent | 9250779c568c9226c6e06c61a4333def846a7d47 (diff) | |
download | slackbuilds-2a31ca7470d58c95ab7d42c5c9453991d2b0714d.tar.gz |
python/cairocffi: Add python3 support.
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | python/cairocffi/README | 2 | ||||
-rw-r--r-- | python/cairocffi/cairocffi.SlackBuild | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/python/cairocffi/README b/python/cairocffi/README index 73c7201dd7..99dee9617d 100644 --- a/python/cairocffi/README +++ b/python/cairocffi/README @@ -4,4 +4,4 @@ Cairo is a 2D vector graphics library with support for multiple backends including image buffers, PNG, PostScript, PDF, and SVG file output. API compatible with Pycairo. -python-xcffib is an optional dependency. +python3 and python-xcffib is an optional dependency. diff --git a/python/cairocffi/cairocffi.SlackBuild b/python/cairocffi/cairocffi.SlackBuild index e3361f1bc7..5412c3cc2f 100644 --- a/python/cairocffi/cairocffi.SlackBuild +++ b/python/cairocffi/cairocffi.SlackBuild @@ -71,6 +71,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 |