package/qt6/qt6serialport: new package
Signed-off-by: Jesse Van Gavere <jesseevg@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
86ec2b57f4
commit
7f67bd1ca6
@ -1468,6 +1468,9 @@ F: package/wmctrl/
|
||||
F: package/x11r7/xdriver_xf86-video-imx/
|
||||
F: package/x11r7/xdriver_xf86-video-imx-viv/
|
||||
|
||||
N: Jesse Van Gavere <jesseevg@gmail.com>
|
||||
F: package/qt6/qt6serialport/
|
||||
|
||||
N: Jianhui Zhao <zhaojh329@gmail.com>
|
||||
F: package/libuhttpd/
|
||||
F: package/libuwsc/
|
||||
|
@ -39,5 +39,6 @@ menuconfig BR2_PACKAGE_QT6
|
||||
if BR2_PACKAGE_QT6
|
||||
|
||||
source "package/qt6/qt6base/Config.in"
|
||||
source "package/qt6/qt6serialport/Config.in"
|
||||
|
||||
endif
|
||||
|
11
package/qt6/qt6serialport/Config.in
Normal file
11
package/qt6/qt6serialport/Config.in
Normal file
@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_QT6SERIALPORT
|
||||
bool "qt6serialport"
|
||||
help
|
||||
Qt is a cross-platform application and UI framework for
|
||||
developers using C++.
|
||||
|
||||
Qt Serial Port provides the basic functionality, which
|
||||
includes configuring, I/O operations, getting and setting
|
||||
the control signals of the RS-232 pinouts.
|
||||
|
||||
https://doc.qt.io/qt-6/qserialport.html
|
9
package/qt6/qt6serialport/qt6serialport.hash
Normal file
9
package/qt6/qt6serialport/qt6serialport.hash
Normal file
@ -0,0 +1,9 @@
|
||||
# Hash from: https://download.qt.io/official_releases/qt/6.3/6.3.1/submodules/qtserialport-everywhere-src-6.3.1.tar.xz.sha256
|
||||
sha256 4eb6d80e65799dd2e0318df4dfba14173c1929e861718cda9bedca24253b616e qtserialport-everywhere-src-6.3.1.tar.xz
|
||||
|
||||
# Hashes for license files:
|
||||
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENSE.GPL2
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSE.GPL3
|
||||
sha256 0dbe024961f6ab5c52689cbd036c977975d0d0f6a67ff97762d96cb819dd5652 LICENSE.GPL3-EXCEPT
|
||||
sha256 da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768 LICENSE.LGPL3
|
||||
sha256 ed8742a95cb9db653a09b050e27ccff5e67ba69c14aa2c3137f2a4e1892f6c0d LICENSE.FDL
|
38
package/qt6/qt6serialport/qt6serialport.mk
Normal file
38
package/qt6/qt6serialport/qt6serialport.mk
Normal file
@ -0,0 +1,38 @@
|
||||
################################################################################
|
||||
#
|
||||
# qt6serialport
|
||||
#
|
||||
################################################################################
|
||||
|
||||
QT6SERIALPORT_VERSION = $(QT6_VERSION)
|
||||
QT6SERIALPORT_SITE = $(QT6_SITE)
|
||||
QT6SERIALPORT_SOURCE = qtserialport-$(QT6_SOURCE_TARBALL_PREFIX)-$(QT6SERIALPORT_VERSION).tar.xz
|
||||
QT6SERIALPORT_INSTALL_STAGING = YES
|
||||
QT6SERIALPORT_SUPPORTS_IN_SOURCE_BUILD = NO
|
||||
QT6SERIALPORT_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception (tools), GFDL-1.3 (docs)
|
||||
QT6SERIALPORT_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
|
||||
QT6SERIALPORT_CONF_OPTS = \
|
||||
-GNinja \
|
||||
-DQT_HOST_PATH=$(HOST_DIR) \
|
||||
-DBUILD_WITH_PCH=OFF \
|
||||
-DQT_BUILD_EXAMPLES=OFF \
|
||||
-DQT_BUILD_TESTS=OFF
|
||||
|
||||
QT6SERIALPORT_DEPENDENCIES = \
|
||||
host-pkgconf \
|
||||
host-ninja \
|
||||
qt6base
|
||||
|
||||
define QT6SERIALPORT_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(BR2_CMAKE) --build $(QT6SERIALPORT_BUILDDIR)
|
||||
endef
|
||||
|
||||
define QT6SERIALPORT_INSTALL_STAGING_CMDS
|
||||
$(TARGET_MAKE_ENV) $(BR2_CMAKE) --install $(QT6SERIALPORT_BUILDDIR) --prefix $(STAGING_DIR)/usr
|
||||
endef
|
||||
|
||||
define QT6SERIALPORT_INSTALL_TARGET_CMDS
|
||||
$(TARGET_MAKE_ENV) $(BR2_CMAKE) --install $(QT6SERIALPORT_BUILDDIR) --prefix $(TARGET_DIR)/usr
|
||||
endef
|
||||
|
||||
$(eval $(cmake-package))
|
Loading…
Reference in New Issue
Block a user