|
@@ -25,6 +25,10 @@ ifeq ($(BR2_PACKAGE_QT5BASE_XCB),y)
|
|
|
QT5WEBKIT_DEPENDENCIES += xlib_libXext xlib_libXrender
|
|
|
endif
|
|
|
|
|
|
+ifeq ($(BR2_PACKAGE_QT5DECLARATIVE),y)
|
|
|
+QT5WEBKIT_DEPENDENCIES += qt5declarative
|
|
|
+endif
|
|
|
+
|
|
|
define QT5WEBKIT_CONFIGURE_CMDS
|
|
|
(cd $(@D); $(TARGET_MAKE_ENV) $(HOST_DIR)/usr/bin/qmake)
|
|
|
endef
|
|
@@ -38,10 +42,16 @@ define QT5WEBKIT_INSTALL_STAGING_CMDS
|
|
|
$(QT5_LA_PRL_FILES_FIXUP)
|
|
|
endef
|
|
|
|
|
|
+ifeq ($(BR2_PACKAGE_QT5DECLARATIVE),y)
|
|
|
+define QT5WEBKIT_INSTALL_TARGET_QMLS
|
|
|
+ cp -dpfr $(STAGING_DIR)/usr/qml/QtWebKit $(TARGET_DIR)/usr/qml/
|
|
|
+endef
|
|
|
+endif
|
|
|
+
|
|
|
define QT5WEBKIT_INSTALL_TARGET_CMDS
|
|
|
cp -dpf $(STAGING_DIR)/usr/lib/libQt5WebKit*.so.* $(TARGET_DIR)/usr/lib
|
|
|
cp -dpf $(@D)/bin/* $(TARGET_DIR)/usr/bin/
|
|
|
- cp -dpfr $(STAGING_DIR)/usr/qml/QtWebKit $(TARGET_DIR)/usr/qml/
|
|
|
+ $(QT5WEBKIT_INSTALL_TARGET_QMLS)
|
|
|
endef
|
|
|
|
|
|
$(eval $(generic-package))
|