mirror of
https://invent.kde.org/packaging/yocto-meta-kf5.git
synced 2026-02-20 08:29:42 +01:00
Allows us to maintain the necessary bits in a single place, rather than in multiple recipes in meta-kde.
16 lines
422 B
Plaintext
16 lines
422 B
Plaintext
# Class for recipes using kdoctools to build their documentation
|
|
|
|
do_compile_prepend() {
|
|
# meinproc5 needs to find installed service type files
|
|
export XDG_DATA_DIRS=${STAGING_DATADIR}:$XDG_DATA_DIRS
|
|
# meinproc5 needs to find its libraries
|
|
export LD_LIBRARY_PATH=${STAGING_LIBDIR_NATIVE}:$LD_LIBRARY_PATH
|
|
}
|
|
|
|
DEPENDS += " \
|
|
kdoctools \
|
|
kdoctools-native \
|
|
libxslt-native \
|
|
karchive-native \
|
|
"
|