mirror of
https://git.yoctoproject.org/poky
synced 2026-09-19 18:49:32 +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>
35 lines
1.0 KiB
BlitzBasic
35 lines
1.0 KiB
BlitzBasic
SUMMARY = "Stream EDitor (text filtering utility)"
|
|
HOMEPAGE = "http://www.gnu.org/software/sed/"
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
|
|
file://sed/sed.h;beginline=1;endline=17;md5=e00ffd1837f298439a214fd197f6a407"
|
|
SECTION = "console/utils"
|
|
PR = "r7"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.gz \
|
|
file://fix_return_type.patch \
|
|
file://sed-4.1.2_fix_for_automake-1.12.patch \
|
|
file://Makevars"
|
|
|
|
SRC_URI[md5sum] = "928f0e06422f414091917401f1a834d0"
|
|
SRC_URI[sha256sum] = "638e837ba765d5da0a30c98b57c2953cecea96827882f594612acace93ceeeab"
|
|
|
|
inherit autotools texinfo update-alternatives gettext
|
|
|
|
do_configure_prepend () {
|
|
cp ${WORKDIR}/Makevars ${S}/po/
|
|
}
|
|
|
|
do_install () {
|
|
autotools_do_install
|
|
install -d ${D}${base_bindir}
|
|
mv ${D}${bindir}/sed ${D}${base_bindir}/sed
|
|
rmdir ${D}${bindir}/
|
|
}
|
|
|
|
ALTERNATIVE_${PN} = "sed"
|
|
ALTERNATIVE_LINK_NAME[sed] = "${base_bindir}/sed"
|
|
ALTERNATIVE_PRIORITY = "100"
|
|
|
|
BBCLASSEXTEND = "native"
|