Warning, /packaging/yocto-meta-kde/recipes-support/maliit-framework-qt5.inc is written in an unsupported language. File is not indexed.

0001 # SPDX-FileCopyrightText: 2020 Andreas Cord-Landwehr <cordlandwehr@kde.org>
0002 #
0003 # SPDX-License-Identifier: MIT
0004 
0005 LICENSE = "LGPL-2.1"
0006 LIC_FILES_CHKSUM = "file://LICENSE.LGPL;md5=5c917f6ce94ceb8d8d5e16e2fca5b9ad"
0007 
0008 SRC_URI = " \
0009     git://github.com/maliit/framework.git;nobranch=1;protocol=https \
0010 "
0011 S = "${WORKDIR}/git"
0012 
0013 DEPENDS += " \
0014     qtbase \
0015     qtdeclarative \
0016     qtmultimedia \
0017     qtwayland \
0018     qtwayland-native \
0019     glibc \
0020     glib-2.0-native \
0021     wayland \
0022 "
0023 
0024 inherit cmake_qt5
0025 inherit pkgconfig
0026 
0027 EXTRA_OECMAKE += " \
0028     -Denable-docs=OFF \
0029     -Denable-tests=OFF \
0030     -Denable-dbus-activation=ON \
0031     -DQT5_PLUGINS_INSTALL_DIR=${OE_QMAKE_PATH_PLUGINS} \
0032 "
0033 
0034 FILES:${PN} += " \
0035     ${libdir}/plugins \
0036     ${datadir}/dbus-1/ \
0037 "
0038 
0039 FILES:${PN}-dev += " \
0040     ${libdir}/qt5/mkspecs \
0041 "