8729c4ef88
- change from git download to official release and download site (drop need for autoreconf) - drop dependency on kernel headers >= 3.17 (should be fixed with commit 'v4l2: make ZBar build and run on Kernels < 3.16' (see [1]), fall back to original kernel headers >= 3.0 dependency propagated from libv4l [1] https://git.linuxtv.org/zbar.git/commit/?id=fa5c48127ec1e3670e28540c2e6a03431ebac5b8 Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
36 lines
869 B
Makefile
36 lines
869 B
Makefile
################################################################################
|
|
#
|
|
# zbar
|
|
#
|
|
################################################################################
|
|
|
|
ZBAR_VERSION = 0.22
|
|
ZBAR_SOURCE = zbar-$(ZBAR_VERSION).tar.bz2
|
|
ZBAR_SITE = https://www.linuxtv.org/downloads/zbar
|
|
ZBAR_LICENSE = LGPL-2.1+
|
|
ZBAR_LICENSE_FILES = LICENSE
|
|
ZBAR_INSTALL_STAGING = YES
|
|
ZBAR_DEPENDENCIES = libv4l jpeg
|
|
# add host-gettext for AM_ICONV macro
|
|
ZBAR_DEPENDENCIES += host-gettext
|
|
# uses C99 features
|
|
ZBAR_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -std=gnu99"
|
|
ZBAR_CONF_OPTS = \
|
|
--disable-doc \
|
|
--without-imagemagick \
|
|
--without-qt \
|
|
--without-qt5 \
|
|
--without-gtk \
|
|
--without-python2 \
|
|
--without-x \
|
|
--without-java
|
|
|
|
ifeq ($(BR2_PACKAGE_DBUS),y)
|
|
ZBAR_DEPENDENCIES += dbus
|
|
ZBAR_CONF_OPTS += --with-dbus
|
|
else
|
|
ZBAR_CONF_OPTS += --without-dbus
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|