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.
14 lines
251 B
Plaintext
14 lines
251 B
Plaintext
# Class for recipes using ki18n for internationalization
|
|
#
|
|
# SPDX-FileCopyrightText: 2019 Volker Krause <vkrause@kde.org>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
inherit python3native
|
|
inherit gettext
|
|
|
|
DEPENDS:append = " \
|
|
ki18n \
|
|
gettext-native \
|
|
"
|