diff options
author | Benjamin Trigona-Harany <bosth@alumni.sfu.ca> | 2019-05-30 09:09:58 -0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-06-01 07:04:25 +0700 |
commit | 6e7d4bea02d6073c6ffcfe8b549d485b8534f2ed (patch) | |
tree | dcb1d23c83570f125eae3b51a6be639150adcfc8 /libraries | |
parent | 5d0a66fcc3d2099430eadf0b21d2a4db3ce08f3d (diff) | |
download | slackbuilds-6e7d4bea02d6073c6ffcfe8b549d485b8534f2ed.tar.gz |
libraries/Jinja2: Add support for Python 3.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/Jinja2/Jinja2.SlackBuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libraries/Jinja2/Jinja2.SlackBuild b/libraries/Jinja2/Jinja2.SlackBuild index 09235b610a..d6ea496e8e 100644 --- a/libraries/Jinja2/Jinja2.SlackBuild +++ b/libraries/Jinja2/Jinja2.SlackBuild @@ -25,7 +25,7 @@ PRGNAM=Jinja2 VERSION=${VERSION:-2.10.1} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -70,7 +70,8 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -python setup.py install --root=$PKG +python2 setup.py install --root=$PKG +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 |