kumquat-buildroot/package/zbar/zbar.mk
Julien Olivain fe189deeed package/zbar: add the optional imagemagick dependency
When ImageMagick is selected, the "zbarimg" program is compiled and
installed on target. It allows to decode a QR code from an image file.

Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 84ad5c22d0)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2024-06-03 18:06:18 +02:00

50 lines
1.2 KiB
Makefile

################################################################################
#
# zbar
#
################################################################################
ZBAR_VERSION = 0.23.93
ZBAR_SOURCE = zbar-$(ZBAR_VERSION).tar.bz2
ZBAR_SITE = https://www.linuxtv.org/downloads/zbar
ZBAR_LICENSE = LGPL-2.1+
ZBAR_LICENSE_FILES = LICENSE.md
ZBAR_CPE_ID_VALID = YES
ZBAR_INSTALL_STAGING = YES
ZBAR_DEPENDENCIES = libv4l jpeg $(TARGET_NLS_DEPENDENCIES)
# uses C99 features
ZBAR_CONF_ENV = \
CFLAGS="$(TARGET_CFLAGS) -std=gnu99" \
LIBS=$(TARGET_NLS_LIBS)
ZBAR_CONF_OPTS = \
--disable-doc \
--without-qt \
--without-qt5 \
--without-gtk \
--without-x \
--without-java
ifeq ($(BR2_PACKAGE_DBUS),y)
ZBAR_DEPENDENCIES += dbus
ZBAR_CONF_OPTS += --with-dbus
else
ZBAR_CONF_OPTS += --without-dbus
endif
ifeq ($(BR2_PACKAGE_IMAGEMAGICK),y)
ZBAR_DEPENDENCIES += imagemagick
ZBAR_CONF_OPTS += --with-imagemagick
else
ZBAR_CONF_OPTS += --without-imagemagick
endif
ifeq ($(BR2_PACKAGE_PYTHON3),y)
ZBAR_DEPENDENCIES += host-python3 python3
ZBAR_CONF_OPTS += --with-python=python3
ZBAR_CONF_ENV += PYTHON_CONFIG="$(STAGING_DIR)/usr/bin/python3-config"
else
ZBAR_CONF_OPTS += --with-python=no
endif
$(eval $(autotools-package))