mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 15:29:40 +01:00
I'm building a SDK (bitbake task: populate_sdk) for WPE/WebKit development [1] and I need the tools below to be extended with the class nativesdk. They work fine on the SDK after this change. The needs are because: 1) gperf and unifdef are required by the WebKit build system at build time. 2) gi-docgen is required by the WebKit build system when CMake option 'ENABLE_DOCUMENTATION' is enabled, and gi-docgen itself depends on the following python modules that also need to enable nativesdk: python3-markdown, python3-smartypants and python3-typogrify [1] See: - https://github.com/Igalia/meta-webkit/pull/436 - https://bugs.webkit.org/show_bug.cgi?id=249604 (From OE-Core rev: 6cb38fd632a161bea7b9a04de400d8be8d565b07) Signed-off-by: Carlos Alberto Lopez Perez <clopez@igalia.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
945 B
BlitzBasic
22 lines
945 B
BlitzBasic
SUMMARY = "Selectively remove #ifdef statements from sources"
|
|
SECTION = "devel"
|
|
LICENSE = "BSD-2-Clause"
|
|
HOMEPAGE = "http://dotat.at/prog/unifdef/"
|
|
DESCRIPTION = "The unifdef utility selectively processes conditional C preprocessor #if and #ifdef directives. It removes from a file both the directives and the additional text that they delimit, while otherwise leaving the file alone."
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=3498caf346f6b77934882101749ada23 \
|
|
file://unifdef.c;endline=32;md5=6f4ee8085d6e6ab0f7cb4390e1a9c497 \
|
|
"
|
|
|
|
SRC_URI = "http://dotat.at/prog/${BPN}/${BP}.tar.xz"
|
|
SRC_URI[md5sum] = "ae8c0b3b4c43c1f6bc5f32412a820818"
|
|
SRC_URI[sha256sum] = "43ce0f02ecdcdc723b2475575563ddb192e988c886d368260bc0a63aee3ac400"
|
|
|
|
UPSTREAM_CHECK_REGEX = "unifdef-(?P<pver>((\d+\.*)+)(?![a-f0-9]{6,})).tar"
|
|
|
|
do_install() {
|
|
oe_runmake install DESTDIR=${D} prefix=${prefix}
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|