diff options
Diffstat (limited to 'meta/recipes-devtools/automake/automake_1.17.bb')
-rw-r--r-- | meta/recipes-devtools/automake/automake_1.17.bb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/meta/recipes-devtools/automake/automake_1.17.bb b/meta/recipes-devtools/automake/automake_1.17.bb new file mode 100644 index 0000000000..4cda04e47b --- /dev/null +++ b/meta/recipes-devtools/automake/automake_1.17.bb | |||
@@ -0,0 +1,40 @@ | |||
1 | require automake.inc | ||
2 | LICENSE = "GPL-2.0-only" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
4 | DEPENDS:class-native = "autoconf-native" | ||
5 | |||
6 | NAMEVER = "${@oe.utils.trim_version("${PV}", 2)}" | ||
7 | |||
8 | RDEPENDS:${PN} += "\ | ||
9 | autoconf \ | ||
10 | perl \ | ||
11 | perl-module-bytes \ | ||
12 | perl-module-data-dumper \ | ||
13 | perl-module-strict \ | ||
14 | perl-module-text-parsewords \ | ||
15 | perl-module-thread-queue \ | ||
16 | perl-module-threads \ | ||
17 | perl-module-vars " | ||
18 | |||
19 | RDEPENDS:${PN}:class-native = "autoconf-native hostperl-runtime-native" | ||
20 | |||
21 | SRC_URI += "\ | ||
22 | file://0002-automake-Update-for-python.m4-to-respect-libdir.patch \ | ||
23 | file://0004-Add-a-new-distro-feature-ptest.patch \ | ||
24 | file://0006-automake-Remove-delays-in-configure-scripts-using-au.patch \ | ||
25 | file://0001-configure-don-t-report-error-when-the-path-of-Perl-c.patch \ | ||
26 | " | ||
27 | |||
28 | SRC_URI[sha256sum] = "397767d4db3018dd4440825b60c64258b636eaf6bf99ac8b0897f06c89310acd" | ||
29 | |||
30 | PERL = "${USRBINPATH}/perl" | ||
31 | PERL:class-native = "${USRBINPATH}/env perl" | ||
32 | PERL:class-nativesdk = "${USRBINPATH}/env perl" | ||
33 | |||
34 | CACHED_CONFIGUREVARS += "ac_cv_path_PERL='${PERL}'" | ||
35 | |||
36 | do_install:append () { | ||
37 | install -d ${D}${datadir} | ||
38 | } | ||
39 | |||
40 | BBCLASSEXTEND = "native nativesdk" | ||