48 lines
1.3 KiB
Bash
48 lines
1.3 KiB
Bash
# Template file for 'python-Pillow'
|
|
pkgname=python-Pillow
|
|
version=4.2.1
|
|
revision=1
|
|
wrksrc="Pillow-${version}"
|
|
build_style=python-module
|
|
pycompile_module="PIL"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
makedepends="python-devel python3-devel libjpeg-turbo-devel libopenjpeg2-devel
|
|
tiff-devel freetype-devel lcms2-devel libwebp-devel libimagequant-devel libraqm-devel"
|
|
depends="python-olefile"
|
|
short_desc="Python Imaging Library (PIL) fork (Python2)"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://python-pillow.org/"
|
|
license="PIL"
|
|
distfiles="${PYPI_SITE}/P/Pillow/Pillow-${version}.tar.gz"
|
|
checksum=c724f65870e545316f9e82e4c6d608ab5aa9dd82d5185e5b2e72119378740073
|
|
|
|
pre_build() {
|
|
# don't install example scripts in /usr/bin
|
|
sed -i '/scripts=/d' setup.py
|
|
}
|
|
post_install() {
|
|
for f in Scripts/*; do
|
|
vsconf ${f}
|
|
done
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3-Pillow_package() {
|
|
pycompile_module="PIL"
|
|
depends="python3-olefile"
|
|
replaces="python3.4-Pillow>=0"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
for f in Scripts/*; do
|
|
vsconf ${f}
|
|
done
|
|
vlicense LICENSE
|
|
}
|
|
}
|
|
python3.4-Pillow_package() {
|
|
build_style=meta
|
|
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
|
depends="python3-Pillow>=${version}_${revision}"
|
|
}
|