mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
32 lines
983 B
Makefile
32 lines
983 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
|
|
PKG_NAME="Pillow"
|
|
PKG_VERSION="5.1.0"
|
|
PKG_SHA256="cee9bc75bff455d317b6947081df0824a8f118de2786dc3d74a3503fd631f4ef"
|
|
PKG_LICENSE="BSD"
|
|
PKG_SITE="http://www.pythonware.com/products/pil/"
|
|
PKG_URL="https://files.pythonhosted.org/packages/source/${PKG_NAME:0:1}/$PKG_NAME/$PKG_NAME-$PKG_VERSION.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain Python2 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() {
|
|
python setup.py build --cross-compile
|
|
}
|
|
|
|
makeinstall_target() {
|
|
python setup.py install --root=$INSTALL --prefix=/usr
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
find $INSTALL/usr/lib -name "*.py" -exec rm -rf "{}" ";"
|
|
|
|
rm -rf $INSTALL/usr/bin
|
|
}
|