Bruce Leidl
be34ea65f3
- removed layers meta-rust and meta-clang - added new dependencies to Makefile - changed override syntax across all recipe files - updated conf files from hardknott to kirkstone - SRC_URI git URLS fixed to always include branch and protocol - LICENSE fields updated with new naming convention - updated citadel-tools dependencies - upgraded mozjs to mozjs-91 No longer needed because poky includes newer version (or new enough): - glib-2.0 - libgudev - xorgproto - libxfixes - libinput - wayland-protocols - vte
38 lines
748 B
BlitzBasic
38 lines
748 B
BlitzBasic
require ${BPN}.inc
|
|
|
|
DEPENDS += " \
|
|
${BPN}-native \
|
|
glib-2.0-native \
|
|
glib-2.0 \
|
|
dbus \
|
|
iso-codes \
|
|
"
|
|
|
|
inherit gtk-icon-cache bash-completion
|
|
|
|
# for unicode-ucd
|
|
EXTRA_OECONF += "--with-ucd-dir=${STAGING_DATADIR}/unicode/ucd"
|
|
|
|
PACKAGECONFIG ??= " \
|
|
dconf vala \
|
|
${@bb.utils.contains_any('DISTRO_FEATURES', [ 'wayland', 'x11' ], 'gtk3', '', d)} \
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'wayland x11', d)} \
|
|
"
|
|
|
|
do_configure:prepend() {
|
|
# run native unicode-parser
|
|
sed -i 's:$(builddir)/unicode-parser:unicode-parser:g' ${S}/src/Makefile.am
|
|
}
|
|
|
|
FILES:${PN} += " \
|
|
${datadir}/dbus-1 \
|
|
${datadir}/GConf \
|
|
${datadir}/glib-2.0 \
|
|
${libdir}/gtk-3.0 \
|
|
"
|
|
|
|
FILES:${PN}-dev += " \
|
|
${datadir}/gettext \
|
|
"
|
|
|