e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
40 lines
955 B
Makefile
40 lines
955 B
Makefile
#############################################################
|
|
#
|
|
# zxing
|
|
#
|
|
#############################################################
|
|
ZXING_VERSION = 2.0
|
|
ZXING_SITE = http://zxing.googlecode.com/files
|
|
ZXING_SOURCE = ZXing-$(ZXING_VERSION).zip
|
|
ZXING_INSTALL_STAGING = YES
|
|
|
|
ifneq ($(BR2_ENABLE_LOCALE),y)
|
|
ZXING_DEPENDENCIES += libiconv
|
|
endif
|
|
|
|
define ZXING_EXTRACT_CMDS
|
|
unzip -d $(BUILD_DIR) $(DL_DIR)/$(ZXING_SOURCE)
|
|
endef
|
|
|
|
define ZXING_BUILD_CMDS
|
|
$(MAKE) -C $(@D)/cpp/core/src $(TARGET_CONFIGURE_OPTS)
|
|
endef
|
|
|
|
define ZXING_INSTALL_STAGING_CMDS
|
|
$(MAKE) -C $(@D)/cpp/core/src DESTDIR=$(STAGING_DIR) install
|
|
endef
|
|
|
|
define ZXING_UNINSTALL_STAGING_CMDS
|
|
$(MAKE) -C $(@D)/cpp/core/src DESTDIR=$(STAGING_DIR) uninstall
|
|
endef
|
|
|
|
define ZXING_INSTALL_TARGET_CMDS
|
|
$(MAKE) -C $(@D)/cpp/core/src DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
define ZXING_UNINSTALL_TARGET_CMDS
|
|
$(MAKE) -C $(@D)/cpp/core/src DESTDIR=$(TARGET_DIR) uninstall
|
|
endef
|
|
|
|
$(eval $(generic-package))
|