mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-04 16:10:04 +00:00
This is the result of running the following over the metadata: sed \ -e 's:bb.data.\(setVar([^,()]*,[^,()]*\), *\([^ )]*\) *):\2.\1):g' \ -e 's:bb.data.\(setVarFlag([^,()]*,[^,()]*,[^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^() ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -i `grep -ril bb.data *` (From OE-Core rev: b22831fd63164c4db9c0b72934d7d734a6585251) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
531 B
PHP
16 lines
531 B
PHP
SUMMARY = "A GNU tool for automatically generating Makefiles."
|
|
DESCRIPTION = "Automake is a tool for automatically generating `Makefile.in' files compliant with the GNU Coding \
|
|
Standards. Automake requires the use of Autoconf."
|
|
LICENSE = "GPLv2"
|
|
HOMEPAGE = "http://www.gnu.org/software/automake/"
|
|
SECTION = "devel"
|
|
PR = "r4"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.bz2 "
|
|
|
|
inherit autotools
|
|
|
|
export AUTOMAKE = "${@bb.which('automake', d.getVar('PATH', 1))}"
|
|
|
|
FILES_${PN} += "${datadir}/automake* ${datadir}/aclocal*"
|