void-packages/srcpkgs/python-Pillow/template

46 lines
1.2 KiB
Bash

# Template file for 'python-Pillow'
pkgname=python-Pillow
version=3.3.3
revision=2
wrksrc="Pillow-${version}"
build_style=python-module
hostmakedepends="python-setuptools python3-setuptools"
makedepends="python-devel python3-devel libjpeg-turbo-devel libopenjpeg2-devel
zlib-devel tiff-devel freetype-devel lcms2-devel libwebp-devel"
pycompile_module="PIL"
short_desc="Python Imaging Library (PIL) fork (Python2)"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://github.com/python-pillow/Pillow"
license="PIL"
distfiles="${PYPI_SITE}/P/Pillow/Pillow-${version}.tar.gz"
checksum=b2da91b9d03dcb054cdb07483286434f1841a2024e2b858302ff8dd3c2057b76
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"
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}"
}