mirror of
https://git.yoctoproject.org/poky
synced 2026-02-12 19:53:03 +01: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>
19 lines
567 B
PHP
19 lines
567 B
PHP
SUMMARY = "A GNU tool for automatically generating Makefiles"
|
|
DESCRIPTION = "Automake is a tool for automatically generating `Makefile.in' files compliant with the GNU Coding \
|
|
Standards. Automake requires the use of Autoconf."
|
|
LICENSE = "GPLv2"
|
|
HOMEPAGE = "http://www.gnu.org/software/automake/"
|
|
SECTION = "devel"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.gz"
|
|
|
|
inherit autotools texinfo
|
|
|
|
do_configure() {
|
|
oe_runconf
|
|
}
|
|
|
|
export AUTOMAKE = "${@bb.utils.which('automake', d.getVar('PATH', True))}"
|
|
|
|
FILES_${PN} += "${datadir}/automake* ${datadir}/aclocal*"
|