Update buidlroot to version 2016.08.1
This commit is contained in:
15
bsp/buildroot/package/qt5/qt5serialbus/Config.in
Normal file
15
bsp/buildroot/package/qt5/qt5serialbus/Config.in
Normal file
@@ -0,0 +1,15 @@
|
||||
config BR2_PACKAGE_QT5SERIALBUS
|
||||
bool "qt5serialbus"
|
||||
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_6 # CAN FD
|
||||
select BR2_PACKAGE_QT5BASE
|
||||
select BR2_PACKAGE_QT5SERIALPORT
|
||||
help
|
||||
Qt is a cross-platform application and UI framework for
|
||||
developers using C++.
|
||||
|
||||
This package corresponds to the qt5serialbus module.
|
||||
|
||||
http://qt.io
|
||||
|
||||
comment "qt5serialbus needs headers >= 3.6"
|
||||
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_6
|
||||
2
bsp/buildroot/package/qt5/qt5serialbus/qt5serialbus.hash
Normal file
2
bsp/buildroot/package/qt5/qt5serialbus/qt5serialbus.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Hash from: http://download.qt.io/official_releases/qt/5.6/5.6.1-1/submodules/qtserialbus-opensource-src-5.6.1-1.tar.xz.mirrorlist
|
||||
sha256 05cb306d450a697cb8311db1e0edde76eaea0b20a681a74e28cbeda2c1792452 qtserialbus-opensource-src-5.6.1-1.tar.xz
|
||||
50
bsp/buildroot/package/qt5/qt5serialbus/qt5serialbus.mk
Normal file
50
bsp/buildroot/package/qt5/qt5serialbus/qt5serialbus.mk
Normal file
@@ -0,0 +1,50 @@
|
||||
################################################################################
|
||||
#
|
||||
# qt5serialbus
|
||||
#
|
||||
################################################################################
|
||||
|
||||
QT5SERIALBUS_VERSION = $(QT5_VERSION)
|
||||
QT5SERIALBUS_SITE = $(QT5_SITE)
|
||||
QT5SERIALBUS_SOURCE = qtserialbus-opensource-src-$(QT5SERIALBUS_VERSION).tar.xz
|
||||
QT5SERIALBUS_DEPENDENCIES = qt5base qt5serialport
|
||||
QT5SERIALBUS_INSTALL_STAGING = YES
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QT5BASE_LICENSE_APPROVED),y)
|
||||
QT5SERIALBUS_LICENSE = GPLv2 or GPLv3 or LGPLv3, GFDLv1.3 (docs)
|
||||
QT5SERIALBUS_LICENSE_FILES = LICENSE.GPLv2 LICENSE.GPLv3 LICENSE.LGPLv3 LICENSE.FDL
|
||||
else
|
||||
QT5SERIALBUS_LICENSE = Commercial license
|
||||
QT5SERIALBUS_REDISTRIBUTE = NO
|
||||
endif
|
||||
|
||||
define QT5SERIALBUS_CONFIGURE_CMDS
|
||||
(cd $(@D); $(TARGET_MAKE_ENV) $(HOST_DIR)/usr/bin/qmake)
|
||||
endef
|
||||
|
||||
define QT5SERIALBUS_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
||||
endef
|
||||
|
||||
define QT5SERIALBUS_INSTALL_STAGING_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install
|
||||
$(QT5_LA_PRL_FILES_FIXUP)
|
||||
endef
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),)
|
||||
define QT5SERIALBUS_INSTALL_TARGET_LIBS
|
||||
cp -dpf $(STAGING_DIR)/usr/lib/libQt5SerialBus.so.* \
|
||||
$(TARGET_DIR)/usr/lib
|
||||
mkdir -p $(TARGET_DIR)/usr/lib/qt/plugins/canbus
|
||||
cp -dpf $(STAGING_DIR)/usr/lib/qt/plugins/canbus/*.so \
|
||||
$(TARGET_DIR)/usr/lib/qt/plugins/canbus
|
||||
endef
|
||||
endif
|
||||
|
||||
define QT5SERIALBUS_INSTALL_TARGET_CMDS
|
||||
$(QT5SERIALBUS_INSTALL_TARGET_LIBS)
|
||||
$(INSTALL) -m 0755 -D $(@D)/bin/canbusutil \
|
||||
$(TARGET_DIR)/usr/bin/canbusutil
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user