1SUMMARY = "A GNU tool for automatically generating Makefiles"
2DESCRIPTION = "Automake is a tool for automatically generating `Makefile.in' files compliant with the GNU Coding \
3Standards. Automake requires the use of Autoconf."
4LICENSE = "GPLv2"
5HOMEPAGE = "http://www.gnu.org/software/automake/"
6SECTION = "devel"
7
8SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.gz"
9
10inherit autotools texinfo
11
12do_configure() {
13	# We can end up patching macros, which would then mean autoreconf
14	# Cheat by saying everything is up to date.
15	touch ${S}/aclocal.m4 ${S}/Makefile.in ${S}/configure
16	oe_runconf
17}
18
19export AUTOMAKE = "${@bb.utils.which('automake', d.getVar('PATH'))}"
20
21FILES_${PN} += "${datadir}/automake* ${datadir}/aclocal*"
22