diff options
Diffstat (limited to 'python/python3-pillow-opt/python3-pillow-opt.SlackBuild')
| -rw-r--r-- | python/python3-pillow-opt/python3-pillow-opt.SlackBuild | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/python/python3-pillow-opt/python3-pillow-opt.SlackBuild b/python/python3-pillow-opt/python3-pillow-opt.SlackBuild new file mode 100644 index 0000000000..e459ca4063 --- /dev/null +++ b/python/python3-pillow-opt/python3-pillow-opt.SlackBuild @@ -0,0 +1,70 @@ +#!/bin/bash + +# Slackware build script for python3-pillow-opt + +# Written by B. Watson (urchlay@slackware.uk) + +# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=python3-pillow-opt +SRCNAM=pillow +VERSION=${VERSION:-11.3.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $SRCNAM-$VERSION +tar xvf $CWD/$SRCNAM-$VERSION.tar.gz +cd $SRCNAM-$VERSION +chown -R root:root . +find . ! -type l -a \ + \( -perm /111 -a ! -perm 755 -a -exec chmod -f 755 {} + \) -o \ + \( ! -perm /111 -a ! -perm 644 -a -exec chmod -f 644 {} + \) + +PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])') +PYDIR=/opt/python$PYVER +export PYTHONPATH=$PYDIR/site-packages +python3 -m build --wheel --no-isolation +python3 -m installer --prefix $PYDIR --destdir "$PKG" dist/*.whl + +# --prefix doesn't quite do what I want, fourtysixandtwo says there's no +# 'installer' option explicitly set the site-packages dir, and that +# moving stuff after the fact is the best solution so far. +mv $PKG/$PYDIR/lib*/python3*/site-packages $PKG/$PYDIR +rm -rf $PKG/$PYDIR/lib* +strip $PKG/$PYDIR/site-packages/PIL/* &> /dev/null || true + +PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION +mkdir -p $PKGDOC +cp -a LICENSE *.rst *.md $PKGDOC +cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE |
