blob: 4f9b5f77403bc1c24ad08a0eff21e4bb64490fb0 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "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() {
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050013 # 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
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016 oe_runconf
17}
18
19export AUTOMAKE = "${@bb.utils.which('automake', d.getVar('PATH', True))}"
20
21FILES_${PN} += "${datadir}/automake* ${datadir}/aclocal*"