Update buidlroot to version 2016.08.1
This commit is contained in:
10
bsp/buildroot/package/qt5/qt5location/Config.in
Normal file
10
bsp/buildroot/package/qt5/qt5location/Config.in
Normal file
@@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_QT5LOCATION
|
||||
bool "qt5location"
|
||||
select BR2_PACKAGE_QT5BASE
|
||||
help
|
||||
Qt is a cross-platform application and UI framework for
|
||||
developers using C++.
|
||||
|
||||
This package corresponds to the qt5location module.
|
||||
|
||||
http://qt.io
|
||||
2
bsp/buildroot/package/qt5/qt5location/qt5location.hash
Normal file
2
bsp/buildroot/package/qt5/qt5location/qt5location.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Hash from: http://download.qt.io/official_releases/qt/5.6/5.6.1-1/submodules/qtlocation-opensource-src-5.6.1-1.tar.xz.mirrorlist
|
||||
sha256 c9cc21ba3dd3f13376a175b092256403589a52c7851603dbfe1e15d5d9bac457 qtlocation-opensource-src-5.6.1-1.tar.xz
|
||||
61
bsp/buildroot/package/qt5/qt5location/qt5location.mk
Normal file
61
bsp/buildroot/package/qt5/qt5location/qt5location.mk
Normal file
@@ -0,0 +1,61 @@
|
||||
################################################################################
|
||||
#
|
||||
# qt5location
|
||||
#
|
||||
################################################################################
|
||||
|
||||
QT5LOCATION_VERSION = $(QT5_VERSION)
|
||||
QT5LOCATION_SITE = $(QT5_SITE)
|
||||
QT5LOCATION_SOURCE = qtlocation-opensource-src-$(QT5LOCATION_VERSION).tar.xz
|
||||
QT5LOCATION_DEPENDENCIES = qt5base
|
||||
QT5LOCATION_INSTALL_STAGING = YES
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QT5BASE_LICENSE_APPROVED),y)
|
||||
QT5LOCATION_LICENSE = GPLv2 or GPLv3 or LGPLv2.1 with exception or LGPLv3, GFDLv1.3 (docs)
|
||||
QT5LOCATION_LICENSE_FILES = LICENSE.GPLv2 LICENSE.GPLv3 LICENSE.LGPLv21 LGPL_EXCEPTION.txt LICENSE.LGPLv3 LICENSE.FDL
|
||||
else
|
||||
QT5LOCATION_LICENSE = Commercial license
|
||||
QT5LOCATION_REDISTRIBUTE = NO
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QT5DECLARATIVE),y)
|
||||
QT5LOCATION_DEPENDENCIES += qt5declarative
|
||||
endif
|
||||
|
||||
define QT5LOCATION_CONFIGURE_CMDS
|
||||
(cd $(@D); $(TARGET_MAKE_ENV) $(HOST_DIR)/usr/bin/qmake)
|
||||
endef
|
||||
|
||||
define QT5LOCATION_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
||||
endef
|
||||
|
||||
define QT5LOCATION_INSTALL_STAGING_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install
|
||||
$(QT5_LA_PRL_FILES_FIXUP)
|
||||
endef
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QT5DECLARATIVE_QUICK),y)
|
||||
define QT5LOCATION_INSTALL_TARGET_QMLS
|
||||
cp -dpfr $(STAGING_DIR)/usr/qml/QtPositioning $(TARGET_DIR)/usr/qml/
|
||||
cp -dpfr $(STAGING_DIR)/usr/qml/QtLocation $(TARGET_DIR)/usr/qml/
|
||||
endef
|
||||
define QT5LOCATION_INSTALL_TARGET_LOCATION
|
||||
cp -dpf $(STAGING_DIR)/usr/lib/libQt5Location.so.* $(TARGET_DIR)/usr/lib
|
||||
cp -dpfr $(STAGING_DIR)/usr/lib/qt/plugins/geoservices $(TARGET_DIR)/usr/lib/qt/plugins/
|
||||
endef
|
||||
endif
|
||||
|
||||
define QT5LOCATION_INSTALL_TARGET_POSITION
|
||||
cp -dpf $(STAGING_DIR)/usr/lib/libQt5Positioning.so.* $(TARGET_DIR)/usr/lib
|
||||
cp -dpfr $(STAGING_DIR)/usr/lib/qt/plugins/position $(TARGET_DIR)/usr/lib/qt/plugins/
|
||||
endef
|
||||
|
||||
define QT5LOCATION_INSTALL_TARGET_CMDS
|
||||
$(QT5LOCATION_INSTALL_TARGET_POSITION)
|
||||
$(QT5LOCATION_INSTALL_TARGET_LOCATION)
|
||||
$(QT5LOCATION_INSTALL_TARGET_QMLS)
|
||||
endef
|
||||
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user