mirror of
https://invent.kde.org/packaging/yocto-meta-kf5.git
synced 2026-01-29 21:08:43 +01:00
The change was performed as follows: - it was checked that the COPYING.MIT license was present with the initial commit and such each contributor was awere of the license - mail was around to all previous contributors to check this assumption (mail was not replied by Hannah and Sebastian); every reply was a confirmation of the assumed MIT licensing - all copyright information were recovered from the respective Git commits - reuse lint was to used to check the REUSE conformance
31 lines
705 B
PHP
31 lines
705 B
PHP
# SPDX-FileCopyrightText: 2017-2020 Volker Krause <vkrause@kde.org>
|
|
# SPDX-FileCopyrightText: 2020 Andreas Cord-Landwehr <cordlandwehr@kde.org>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
DESCRIPTION = "Extra CMake Modules"
|
|
HOMEPAGE = "https://api.kde.org/frameworks/extra-cmake-modules/html/index.html"
|
|
LICENSE = "BSD-3-Clause"
|
|
PR = "r0"
|
|
|
|
DEPENDS = "cmake-native qttools"
|
|
|
|
inherit reuse_license_checksums
|
|
|
|
SRC_URI = "git://invent.kde.org/frameworks/${BPN};nobranch=1;protocol=https"
|
|
S = "${WORKDIR}/git"
|
|
CLEANBROKEN = "1"
|
|
|
|
do_compile() {
|
|
cmake -DCMAKE_INSTALL_PREFIX:PATH=${D}/${prefix}/ .
|
|
make
|
|
}
|
|
|
|
do_install() {
|
|
make install
|
|
}
|
|
|
|
FILES_${PN}-dev += " ${datadir}/ECM"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|