package/qt6/qt6quicktimeline: 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:
Roy Kollen Svendsen
2024-12-13 12:58:10 +01:00
committed by Thomas Petazzoni
parent 164053732e
commit 3eaccb3eb1
4 changed files with 39 additions and 0 deletions

View File

@@ -50,6 +50,7 @@ source "package/qt6/qt6declarative/Config.in"
source "package/qt6/qt6languageserver/Config.in"
source "package/qt6/qt6mqtt/Config.in"
source "package/qt6/qt6opcua/Config.in"
source "package/qt6/qt6quicktimeline/Config.in"
source "package/qt6/qt6scxml/Config.in"
source "package/qt6/qt6serialbus/Config.in"
source "package/qt6/qt6serialport/Config.in"

View File

@@ -0,0 +1,7 @@
config BR2_PACKAGE_QT6QUICKTIMELINE
bool "qt6quicktimeline"
select BR2_PACKAGE_QT6DECLARATIVE_QUICK
help
This package corresponds to the Qt Quick Timeline module:
https://doc.qt.io/qt-6/qtquicktimeline-index.html

View File

@@ -0,0 +1,5 @@
# Hash from: https://download.qt.io/official_releases/qt/6.8/6.8.1/submodules/qtquicktimeline-everywhere-src-6.8.1.tar.xz.sha256
sha256 fdbc198e27fd7bce0801fb3cfa336e81932607e6a36c97ae8394880eedfe12a3 qtquicktimeline-everywhere-src-6.8.1.tar.xz
# Hashes for license files
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSES/GPL-3.0-only.txt

View File

@@ -0,0 +1,26 @@
################################################################################
#
# qt6quicktimeline
#
################################################################################
QT6QUICKTIMELINE_VERSION = $(QT6_VERSION)
QT6QUICKTIMELINE_SITE = $(QT6_SITE)
QT6QUICKTIMELINE_SOURCE = qtquicktimeline-$(QT6_SOURCE_TARBALL_PREFIX)-$(QT6QUICKTIMELINE_VERSION).tar.xz
QT6QUICKTIMELINE_INSTALL_STAGING = YES
QT6QUICKTIMELINE_SUPPORTS_IN_SOURCE_BUILD = NO
QT6QUICKTIMELINE_CMAKE_BACKEND = ninja
QT6QUICKTIMELINE_LICENSE = GPL-3.0
QT6QUICKTIMELINE_LICENSE_FILES = LICENSES/GPL-3.0-only.txt
QT6QUICKTIMELINE_CONF_OPTS = \
-DQT_HOST_PATH=$(HOST_DIR) \
-DBUILD_WITH_PCH=OFF \
-DQT_BUILD_EXAMPLES=OFF \
-DQT_BUILD_TESTS=OFF
QT6QUICKTIMELINE_DEPENDENCIES = \
qt6base \
qt6declarative
$(eval $(cmake-package))