Files
Arch-R/packages/python/graphics/Pillow/package.mk
heitbaum ee404f7476 Pillow: update to 8.1.0
Update from 8.0.1 (2020-10-22) to 8.1.0 (2020-01-02)
Release notes at:
https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst
2021-01-07 20:51:26 +00:00

33 lines
975 B
Makefile

# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="Pillow"
PKG_VERSION="8.1.0"
PKG_SHA256="b670476feb912d1f07b8f42815ebef13a039cccfd549b2dac84d2a1599f68af8"
PKG_LICENSE="BSD"
PKG_SITE="https://python-pillow.org/"
PKG_URL="https://github.com/python-pillow/${PKG_NAME}/archive/${PKG_VERSION}.tar.gz"
PKG_DEPENDS_TARGET="toolchain Python3 distutilscross:host zlib freetype libjpeg-turbo tiff"
PKG_LONGDESC="The Python Imaging Library adds image processing capabilities to your Python interpreter."
PKG_TOOLCHAIN="manual"
pre_make_target() {
export PYTHONXCPREFIX="$SYSROOT_PREFIX/usr"
export LDSHARED="$CC -shared"
}
make_target() {
python3 setup.py build --cross-compile
}
makeinstall_target() {
python3 setup.py install --root=$INSTALL --prefix=/usr
}
post_makeinstall_target() {
python_remove_source
rm -rf $INSTALL/usr/bin
}