blob: 9946c73c7158622c3438a67e9f6a28fd1f8d0184 [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."
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00004LICENSE = "GPL-2.0-only"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005HOMEPAGE = "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
Brad Bishop6e60e8b2018-02-01 10:27:11 -050019export AUTOMAKE = "${@bb.utils.which('automake', d.getVar('PATH'))}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020
Patrick Williams213cb262021-08-07 19:21:33 -050021FILES:${PN} += "${datadir}/automake* ${datadir}/aclocal*"