Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "A GNU tool for automatically generating Makefiles" |
| 2 | DESCRIPTION = "Automake is a tool for automatically generating `Makefile.in' files compliant with the GNU Coding \ |
| 3 | Standards. Automake requires the use of Autoconf." |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 4 | LICENSE = "GPL-2.0-only" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 5 | HOMEPAGE = "http://www.gnu.org/software/automake/" |
| 6 | SECTION = "devel" |
| 7 | |
| 8 | SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.gz" |
| 9 | |
| 10 | inherit autotools texinfo |
| 11 | |
| 12 | do_configure() { |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 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 |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 16 | oe_runconf |
| 17 | } |
| 18 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 19 | export AUTOMAKE = "${@bb.utils.which('automake', d.getVar('PATH'))}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 20 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 21 | FILES:${PN} += "${datadir}/automake* ${datadir}/aclocal*" |