mirror of
git://git.yoctoproject.org/poky.git
synced 2025-08-22 00:42:05 +02:00

Move classes to classes-global or classes-recipe as appropriate to take advantage of new bitbake functionality to check class scope/usage. (From OE-Core rev: f5c128008365e141082c129417eb72d2751e8045) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
824 B
Plaintext
31 lines
824 B
Plaintext
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
# Everyone needs vala-native and targets need vala, too,
|
|
# because that is where target builds look for .vapi files.
|
|
#
|
|
VALADEPENDS = ""
|
|
VALADEPENDS:class-target = "vala"
|
|
DEPENDS:append = " vala-native ${VALADEPENDS}"
|
|
|
|
# Our patched version of Vala looks in STAGING_DATADIR for .vapi files
|
|
export STAGING_DATADIR
|
|
# Upstream Vala >= 0.11 looks in XDG_DATA_DIRS for .vapi files
|
|
export XDG_DATA_DIRS = "${STAGING_DATADIR}:${STAGING_LIBDIR}"
|
|
|
|
# Package additional files
|
|
FILES:${PN}-dev += "\
|
|
${datadir}/vala/vapi/*.vapi \
|
|
${datadir}/vala/vapi/*.deps \
|
|
${datadir}/gir-1.0 \
|
|
"
|
|
|
|
# Remove vapigen.m4 that is bundled with tarballs
|
|
# because it does not yet have our cross-compile fixes
|
|
do_configure:prepend() {
|
|
rm -f ${S}/m4/vapigen.m4
|
|
}
|