mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
The class itself currently does nothing. The idea is to mark all recipes that make use of the texinfo utilities. In the future, this class could be used to suppress the generation/formatting of documentation for performance, explicitly track dependencies on these utilities, and eliminate Yocto's current dependency on the host system's texinfo utilities. (From OE-Core rev: e6fb2f9afe2ba6b676c46d1eb297ca9cc532d405) Signed-off-by: Max Eliaser <max.eliaser@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
686 B
BlitzBasic
25 lines
686 B
BlitzBasic
SUMMARY = "Check - unit testing framework for C code"
|
|
HOMEPAGE = "http://check.sourceforge.net/"
|
|
SECTION = "devel"
|
|
|
|
LICENSE = "LGPLv2.1+"
|
|
LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=2d5025d4aa3495befef8f17206a5b0a1"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/check/check-${PV}.tar.gz \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "46fe540d1a03714c7a1967dbc6d484e7"
|
|
SRC_URI[sha256sum] = "c7d47e55e133a0ca19a52e08a99333ac55cb22618b53719b7f4117a1875b1ea3"
|
|
|
|
S = "${WORKDIR}/check-${PV}"
|
|
|
|
inherit autotools pkgconfig texinfo
|
|
|
|
CACHED_CONFIGUREVARS += "ac_cv_path_AWK_PATH=${bindir}/gawk"
|
|
|
|
RREPLACES_${PN} = "check (<= 0.9.5)"
|
|
RDEPENDS_${PN} += "gawk"
|
|
RDEPENDS_${PN}_class-native = ""
|
|
|
|
BBCLASSEXTEND = "native"
|