diff options
author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2016-11-26 11:37:30 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-12-03 07:21:36 +0700 |
commit | 4a82baeb1634aebce8d60518acc7b8691b735ffc (patch) | |
tree | a35f5a280849550a707e05001491e5cfa064d966 /libraries | |
parent | 2a31ca7470d58c95ab7d42c5c9453991d2b0714d (diff) | |
download | slackbuilds-4a82baeb1634aebce8d60518acc7b8691b735ffc.tar.gz |
libraries/cffi: Add python3 support.
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/cffi/README | 2 | ||||
-rw-r--r-- | libraries/cffi/cffi.SlackBuild | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libraries/cffi/README b/libraries/cffi/README index aefa318cac..95a3dd927b 100644 --- a/libraries/cffi/README +++ b/libraries/cffi/README @@ -1,2 +1,4 @@ Foreign Function Interface for Python calling C code. The aim of this project is to provide a convenient and reliable way of calling C code from Python. + +Optional dependency: python3 diff --git a/libraries/cffi/cffi.SlackBuild b/libraries/cffi/cffi.SlackBuild index 725df9c939..0b35ccaa25 100644 --- a/libraries/cffi/cffi.SlackBuild +++ b/libraries/cffi/cffi.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 |