mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
################################################################################
|
||||
#
|
||||
# python-pillow
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_PILLOW_VERSION = 6.1.0
|
||||
PYTHON_PILLOW_SOURCE = Pillow-$(PYTHON_PILLOW_VERSION).tar.gz
|
||||
PYTHON_PILLOW_SITE = https://files.pythonhosted.org/packages/51/fe/18125dc680720e4c3086dd3f5f95d80057c41ab98326877fc7d3ff6d0ee5
|
||||
PYTHON_PILLOW_LICENSE = PIL Software License
|
||||
PYTHON_PILLOW_LICENSE_FILES = LICENSE
|
||||
PYTHON_PILLOW_SETUP_TYPE = setuptools
|
||||
PYTHON_PILLOW_BUILD_OPTS = --disable-platform-guessing
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FREETYPE),y)
|
||||
PYTHON_PILLOW_DEPENDENCIES += freetype
|
||||
PYTHON_PILLOW_BUILD_OPTS += --enable-freetype
|
||||
else
|
||||
PYTHON_PILLOW_BUILD_OPTS += --disable-freetype
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_JPEG),y)
|
||||
PYTHON_PILLOW_DEPENDENCIES += jpeg
|
||||
PYTHON_PILLOW_BUILD_OPTS += --enable-jpeg
|
||||
else
|
||||
PYTHON_PILLOW_BUILD_OPTS += --disable-jpeg
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENJPEG),y)
|
||||
PYTHON_PILLOW_DEPENDENCIES += openjpeg
|
||||
PYTHON_PILLOW_BUILD_OPTS += --enable-jpeg2000
|
||||
else
|
||||
PYTHON_PILLOW_BUILD_OPTS += --disable-jpeg2000
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_TIFF),y)
|
||||
PYTHON_PILLOW_DEPENDENCIES += tiff
|
||||
PYTHON_PILLOW_BUILD_OPTS += --enable-tiff
|
||||
else
|
||||
PYTHON_PILLOW_BUILD_OPTS += --disable-tiff
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_WEBP),y)
|
||||
PYTHON_PILLOW_DEPENDENCIES += webp
|
||||
PYTHON_PILLOW_BUILD_OPTS += --enable-webp
|
||||
else
|
||||
PYTHON_PILLOW_BUILD_OPTS += --disable-webp
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
PYTHON_PILLOW_DEPENDENCIES += zlib
|
||||
PYTHON_PILLOW_BUILD_OPTS += --enable-zlib
|
||||
else
|
||||
PYTHON_PILLOW_BUILD_OPTS += --disable-zlib
|
||||
endif
|
||||
|
||||
define PYTHON_PILLOW_BUILD_CMDS
|
||||
cd $(PYTHON_PILLOW_BUILDDIR); \
|
||||
$(PYTHON_PILLOW_BASE_ENV) $(PYTHON_PILLOW_ENV) \
|
||||
$(PYTHON_PILLOW_PYTHON_INTERPRETER) setup.py build_ext \
|
||||
$(PYTHON_PILLOW_BASE_BUILD_OPTS) $(PYTHON_PILLOW_BUILD_OPTS)
|
||||
endef
|
||||
|
||||
define PYTHON_PILLOW_INSTALL_TARGET_CMDS
|
||||
cd $(PYTHON_PILLOW_BUILDDIR); \
|
||||
$(PYTHON_PILLOW_BASE_ENV) $(PYTHON_PILLOW_ENV) \
|
||||
$(PYTHON_PILLOW_PYTHON_INTERPRETER) setup.py build_ext \
|
||||
$(PYTHON_PILLOW_BUILD_OPTS) install \
|
||||
$(PYTHON_PILLOW_BASE_INSTALL_TARGET_OPTS) \
|
||||
$(PYTHON_PILLOW_INSTALL_TARGET_OPTS)
|
||||
endef
|
||||
|
||||
$(eval $(python-package))
|
||||
Reference in New Issue
Block a user