mirror of
http://code.qt.io/yocto/meta-qt6.git
synced 2026-01-01 13:58:07 +00:00
Update to latest content in Qt 6.1.3 branch. Task-number: QTBUG-95697 Change-Id: I7b6dc1e57a659b23449102b67e101f92c9f58942 Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
29 lines
905 B
BlitzBasic
29 lines
905 B
BlitzBasic
LICENSE = "GPL-3.0 & The-Qt-Company-GPL-Exception-1.0 | The-Qt-Company-Commercial"
|
|
LIC_FILES_CHKSUM = " \
|
|
file://LICENSE.GPL3-EXCEPT;md5=763d8c535a234d9a3fb682c7ecb6c073 \
|
|
"
|
|
|
|
inherit qt6-cmake
|
|
|
|
include recipes-qt/qt6/qt6-git.inc
|
|
include recipes-qt/qt6/qt6.inc
|
|
|
|
DEPENDS += "qtbase qttools qttools-native"
|
|
|
|
PACKAGES = "${PN}"
|
|
PACKAGES_DYNAMIC = "${PN}-*"
|
|
PACKAGESPLITFUNCS_prepend = "split_translation_packages "
|
|
|
|
python split_translation_packages () {
|
|
do_split_packages(d, d.expand('${QT6_INSTALL_TRANSLATIONSDIR}'),
|
|
r'^(.*?)(?:_..)+\.qm$', d.expand('${PN}-%s'),
|
|
'Qt translations for %s', extra_depends='')
|
|
|
|
# Add dynamic packages to the rrecommends of the main packages
|
|
pn = d.getVar('PN')
|
|
pkgs = oe.utils.packages_filter_out_system(d)
|
|
d.setVar('RRECOMMENDS_' + pn, ' '.join(pkgs))
|
|
}
|
|
|
|
SRCREV = "cb0b003558453068ef1493ea12e279741636934d"
|