Warning, /packaging/yocto-meta-kf5/recipes-kdesupport/phonon.inc is written in an unsupported language. File is not indexed.

0001 # SPDX-FileCopyrightText: 2018 Volker Krause <vkrause@kde.org>
0002 #
0003 # SPDX-License-Identifier: MIT
0004 
0005 DESCRIPTION = "Phonon"
0006 LICENSE = "LGPL-2.1-only"
0007 LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1"
0008 PR = "r0"
0009 
0010 DEPENDS = "qtbase extra-cmake-modules"
0011 
0012 SRC_URI = "git://invent.kde.org/libraries/${BPN};nobranch=1;protocol=https"
0013 S = "${WORKDIR}/git"
0014 
0015 inherit cmake_qt5
0016 EXTRA_OECMAKE += " -DPHONON_BUILD_PHONON4QT5=ON"
0017 
0018 # remove the widget designer plugin, this makes no sense for the target
0019 do_install:append() {
0020     rm -rf ${D}/${libdir}/qt5/
0021     rm -rf ${D}/${libdir}/plugins/
0022 }
0023 
0024 FILES:${PN}-dev += " \
0025     ${datadir}/phonon4qt5/buildsystem/* \
0026     ${datadir}/dbus-1/interfaces/*.xml \
0027     ${datadir}/qt5/mkspecs/modules/*.pri \
0028     ${libdir}/cmake/phonon4qt5/* \
0029     ${prefix}/mkspecs \
0030 "