mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 05:53:30 +08:00
package/qt6/qt6mqtt: new package
Signed-off-by: Roy Kollen Svendsen <roykollensvendsen@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
4d609f369c
commit
ba8e85bc06
@ -47,6 +47,7 @@ source "package/qt6/qt6base/Config.in"
|
||||
source "package/qt6/qt6core5compat/Config.in"
|
||||
source "package/qt6/qt6declarative/Config.in"
|
||||
source "package/qt6/qt6languageserver/Config.in"
|
||||
source "package/qt6/qt6mqtt/Config.in"
|
||||
source "package/qt6/qt6serialbus/Config.in"
|
||||
source "package/qt6/qt6serialport/Config.in"
|
||||
source "package/qt6/qt6shadertools/Config.in"
|
||||
|
@ -9,4 +9,6 @@ QT6_VERSION = $(QT6_VERSION_MAJOR).2
|
||||
QT6_SOURCE_TARBALL_PREFIX = everywhere-src
|
||||
QT6_SITE = https://download.qt.io/archive/qt/$(QT6_VERSION_MAJOR)/$(QT6_VERSION)/submodules
|
||||
|
||||
QT6_GIT = git://code.qt.io
|
||||
|
||||
include $(sort $(wildcard package/qt6/*/*.mk))
|
||||
|
10
package/qt6/qt6mqtt/Config.in
Normal file
10
package/qt6/qt6mqtt/Config.in
Normal file
@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_QT6MQTT
|
||||
bool "qt6mqtt"
|
||||
select BR2_PACKAGE_QT6BASE_NETWORK
|
||||
help
|
||||
Qt is a cross-platform application and UI framework for
|
||||
developers using C++.
|
||||
|
||||
This package corresponds to the qt6mqtt module.
|
||||
|
||||
https://doc.qt.io/qt-6/qtmqtt-index.html
|
8
package/qt6/qt6mqtt/qt6mqtt.hash
Normal file
8
package/qt6/qt6mqtt/qt6mqtt.hash
Normal file
@ -0,0 +1,8 @@
|
||||
sha256 be2d3f12378a8e2a103c328201b1e308f8c6c09bd752322592b3164cebba5bde qt6mqtt-6.7.2-git4.tar.gz
|
||||
|
||||
# Hashes for license files:
|
||||
sha256 9f0490f18656c6f2435bd14f603ef0c96434d1825615363dce43abb42ed1dcce LICENSES/BSD-3-Clause.txt
|
||||
sha256 110535522396708cea37c72a802c5e7e81391139f5f7985631c93ef242b206a4 LICENSES/GFDL-1.3-no-invariants-only.txt
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSES/GPL-3.0-only.txt
|
||||
sha256 9b1f50aae6267f9d5e0ceb6775ee86450262c25ec7c0573e151fe5d3f18a4700 LICENSES/LicenseRef-Qt-Commercial.txt
|
||||
sha256 40678d338ce53cd93f8b22b281a2ecbcaa3ee65ce60b25ffb0c462b0530846b2 LICENSES/Qt-GPL-exception-1.0.txt
|
35
package/qt6/qt6mqtt/qt6mqtt.mk
Normal file
35
package/qt6/qt6mqtt/qt6mqtt.mk
Normal file
@ -0,0 +1,35 @@
|
||||
################################################################################
|
||||
#
|
||||
# qt6mqtt
|
||||
#
|
||||
################################################################################
|
||||
|
||||
QT6MQTT_VERSION = $(QT6_VERSION)
|
||||
QT6MQTT_SITE = $(QT6_GIT)/qt/qtmqtt.git
|
||||
|
||||
QT6MQTT_INSTALL_STAGING = YES
|
||||
|
||||
QT6MQTT_SUPPORTS_IN_SOURCE_BUILD = NO
|
||||
|
||||
QT6MQTT_CMAKE_BACKEND = ninja
|
||||
|
||||
QT6MQTT_LICENSE = \
|
||||
BSD-3-Clause (examples), \
|
||||
GFDL-1.3-invariants-only (docs), \
|
||||
GPL-3.0
|
||||
|
||||
QT6MQTT_LICENSE_FILES = \
|
||||
LICENSES/BSD-3-Clause.txt \
|
||||
LICENSES/GFDL-1.3-no-invariants-only.txt \
|
||||
LICENSES/GPL-3.0-only.txt
|
||||
|
||||
QT6MQTT_CONF_OPTS = \
|
||||
-DQT_HOST_PATH=$(HOST_DIR) \
|
||||
-DBUILD_WITH_PCH=OFF \
|
||||
-DQT_BUILD_EXAMPLES=OFF \
|
||||
-DQT_BUILD_TESTS=OFF
|
||||
|
||||
QT6MQTT_DEPENDENCIES = \
|
||||
qt6base
|
||||
|
||||
$(eval $(cmake-package))
|
Loading…
Reference in New Issue
Block a user