initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,89 @@
|
||||
################################################################################
|
||||
#
|
||||
# python-pillow
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_PILLOW_VERSION = 8.3.2
|
||||
PYTHON_PILLOW_SITE = https://files.pythonhosted.org/packages/90/d4/a7c9b6c5d176654aa3dbccbfd0be4fd3a263355dc24122a5f1937bdc2689
|
||||
PYTHON_PILLOW_SOURCE = Pillow-$(PYTHON_PILLOW_VERSION).tar.gz
|
||||
PYTHON_PILLOW_LICENSE = HPND
|
||||
PYTHON_PILLOW_LICENSE_FILES = LICENSE
|
||||
PYTHON_PILLOW_CPE_ID_VENDOR = python
|
||||
PYTHON_PILLOW_CPE_ID_PRODUCT = pillow
|
||||
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_LCMS2),y)
|
||||
PYTHON_PILLOW_DEPENDENCIES += lcms2
|
||||
PYTHON_PILLOW_BUILD_OPTS += --enable-lcms
|
||||
else
|
||||
PYTHON_PILLOW_BUILD_OPTS += --disable-lcms
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBXCB),y)
|
||||
PYTHON_PILLOW_DEPENDENCIES += libxcb
|
||||
PYTHON_PILLOW_BUILD_OPTS += --enable-xcb
|
||||
else
|
||||
PYTHON_PILLOW_BUILD_OPTS += --disable-xcb
|
||||
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
|
||||
ifeq ($(BR2_PACKAGE_WEBP_DEMUX)$(BR2_PACKAGE_WEBP_MUX),yy)
|
||||
PYTHON_PILLOW_BUILD_OPTS += --enable-webpmux
|
||||
else
|
||||
PYTHON_PILLOW_BUILD_OPTS += --disable-webpmux
|
||||
endif
|
||||
else
|
||||
PYTHON_PILLOW_BUILD_OPTS += --disable-webp --disable-webpmux
|
||||
endif
|
||||
|
||||
define PYTHON_PILLOW_BUILD_CMDS
|
||||
cd $(PYTHON_PILLOW_BUILDDIR); \
|
||||
PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1 \
|
||||
$(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); \
|
||||
PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1 \
|
||||
$(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