mirror of
https://invent.kde.org/packaging/yocto-meta-kf5.git
synced 2026-01-29 21:08:43 +01:00
The preferred way for bitbake classes is the append syntax because it does not interact with the += syntax in derived recipes.
20 lines
497 B
Plaintext
20 lines
497 B
Plaintext
# Class for recipes using kdoctools to build their documentation
|
|
#
|
|
# SPDX-FileCopyrightText: 2019 Volker Krause <vkrause@kde.org>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
do_compile:prepend() {
|
|
# meinproc5 needs to find installed service type files
|
|
export XDG_DATA_DIRS=${STAGING_DATADIR}:$XDG_DATA_DIRS
|
|
}
|
|
|
|
DEPENDS:append = " \
|
|
kdoctools \
|
|
kdoctools-native \
|
|
libxslt-native \
|
|
karchive-native \
|
|
"
|
|
|
|
EXTRA_OECMAKE:append = " -DKF5_HOST_TOOLING=${STAGING_DIR_NATIVE}/${libdir}/cmake"
|