mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 07:39:49 +02:00
An automated conversion using scripts/contrib/convert-spdx-licenses.py to convert to use the standard SPDX license identifiers. Two recipes in meta-selftest were not converted as they're that way specifically for testing. A change in linux-firmware was also skipped and may need a more manual tweak. (From OE-Core rev: ceda3238cdbf1beb216ae9ddb242470d5dfc25e0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
781 B
BlitzBasic
27 lines
781 B
BlitzBasic
require findutils.inc
|
|
|
|
# GPLv2+ (<< 4.2.32), GPLv3+ (>= 4.2.32)
|
|
LICENSE = "GPL-3.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464"
|
|
|
|
DEPENDS = "bison-native"
|
|
|
|
SRC_URI[sha256sum] = "a2bfb8c09d436770edc59f50fa483e785b161a3b7b9d547573cb08065fd462fe"
|
|
|
|
PACKAGECONFIG[selinux] = "--with-selinux,--without-selinux,libselinux"
|
|
# http://savannah.gnu.org/bugs/?27299
|
|
CACHED_CONFIGUREVARS += "gl_cv_func_wcwidth_works=yes"
|
|
|
|
EXTRA_OECONF += "ac_cv_path_SORT=${bindir}/sort"
|
|
|
|
RDEPENDS:${PN}-ptest += "bash sed grep"
|
|
|
|
do_install_ptest:class-target() {
|
|
mkdir -p ${D}${PTEST_PATH}/tests/
|
|
cp -r ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
|
|
|
# substitute value in run-ptest with actual version
|
|
sed -i -e 's/__run_ptest_version__/${PV}/' ${D}${PTEST_PATH}/run-ptest
|
|
|
|
}
|