5d85af61b7
Following patches are removed since they are upstreamed: - qt5base/qt5base-0001-eglconvenience-add-egl-to-CONFIG-to-get-correct-incl.patch - qt5jsbackend/qt5jsbackend-0002-fix-uclibc.patch Remove "-nomake demos" from configure options since "demos" directory is merged into examples. Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Tested-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
53 lines
1.7 KiB
Makefile
53 lines
1.7 KiB
Makefile
################################################################################
|
|
#
|
|
# qt5declarative
|
|
#
|
|
################################################################################
|
|
|
|
QT5DECLARATIVE_VERSION = $(QT5_VERSION)
|
|
QT5DECLARATIVE_SITE = $(QT5_SITE)
|
|
QT5DECLARATIVE_SOURCE = qtdeclarative-opensource-src-$(QT5DECLARATIVE_VERSION).tar.xz
|
|
QT5DECLARATIVE_DEPENDENCIES = qt5base qt5xmlpatterns qt5jsbackend
|
|
QT5DECLARATIVE_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE_LICENSE_APPROVED),y)
|
|
QT5DECLARATIVE_LICENSE = LGPLv2.1 or GPLv3.0
|
|
QT5DECLARATIVE_LICENSE_FILES = LICENSE.GPL LICENSE.LGPL LGPL_EXCEPTION.txt
|
|
else
|
|
QT5DECLARATIVE_LICENSE = Commercial license
|
|
QT5DECLARATIVE_REDISTRIBUTE = NO
|
|
endif
|
|
|
|
define QT5DECLARATIVE_CONFIGURE_CMDS
|
|
(cd $(@D); $(HOST_DIR)/usr/bin/qmake)
|
|
endef
|
|
|
|
define QT5DECLARATIVE_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
|
|
sub-src-all sub-tools-all
|
|
endef
|
|
|
|
define QT5DECLARATIVE_INSTALL_STAGING_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
|
|
sub-src-install_subtargets \
|
|
sub-tools-install_subtargets
|
|
$(QT5_LA_PRL_FILES_FIXUP)
|
|
endef
|
|
|
|
ifeq ($(BR2_PREFER_STATIC_LIB),)
|
|
define QT5DECLARATIVE_INSTALL_TARGET_LIBS
|
|
cp -dpf $(STAGING_DIR)/usr/lib/libQt5Qml*.so.* $(TARGET_DIR)/usr/lib
|
|
cp -dpf $(STAGING_DIR)/usr/lib/libQt5Quick*.so.* $(TARGET_DIR)/usr/lib
|
|
cp -dpfr $(STAGING_DIR)/usr/lib/qt/plugins/accessible $(TARGET_DIR)/usr/lib/qt/plugins
|
|
cp -dpfr $(STAGING_DIR)/usr/lib/qt/plugins/qml* $(TARGET_DIR)/usr/lib/qt/plugins
|
|
endef
|
|
endif
|
|
|
|
define QT5DECLARATIVE_INSTALL_TARGET_CMDS
|
|
cp -dpf $(STAGING_DIR)/usr/bin/qml* $(TARGET_DIR)/usr/bin
|
|
cp -dpfr $(STAGING_DIR)/usr/qml $(TARGET_DIR)/usr
|
|
$(QT5DECLARATIVE_INSTALL_TARGET_LIBS)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|