| 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." | 
|  | 4 | LICENSE = "GPLv2" | 
|  | 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 |  | 
|  | 19 | export AUTOMAKE = "${@bb.utils.which('automake', d.getVar('PATH', True))}" | 
|  | 20 |  | 
|  | 21 | FILES_${PN} += "${datadir}/automake* ${datadir}/aclocal*" |