diff options
Diffstat (limited to 'meta/recipes-devtools/automake/automake_1.11.2.bb')
-rw-r--r-- | meta/recipes-devtools/automake/automake_1.11.2.bb | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/meta/recipes-devtools/automake/automake_1.11.2.bb b/meta/recipes-devtools/automake/automake_1.11.2.bb new file mode 100644 index 0000000000..b455edfe6f --- /dev/null +++ b/meta/recipes-devtools/automake/automake_1.11.2.bb | |||
@@ -0,0 +1,49 @@ | |||
1 | require automake.inc | ||
2 | LICENSE="GPLv2" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
4 | DEPENDS_virtclass-native = "autoconf-native" | ||
5 | |||
6 | RDEPENDS_automake += "\ | ||
7 | autoconf \ | ||
8 | perl \ | ||
9 | perl-module-bytes \ | ||
10 | perl-module-constant \ | ||
11 | perl-module-cwd \ | ||
12 | perl-module-data-dumper \ | ||
13 | perl-module-dynaloader \ | ||
14 | perl-module-errno \ | ||
15 | perl-module-exporter-heavy \ | ||
16 | perl-module-file-basename \ | ||
17 | perl-module-file-compare \ | ||
18 | perl-module-file-copy \ | ||
19 | perl-module-file-glob \ | ||
20 | perl-module-file-spec-unix \ | ||
21 | perl-module-file-stat \ | ||
22 | perl-module-getopt-long \ | ||
23 | perl-module-io \ | ||
24 | perl-module-io-file \ | ||
25 | perl-module-posix \ | ||
26 | perl-module-strict \ | ||
27 | perl-module-text-parsewords \ | ||
28 | perl-module-vars " | ||
29 | |||
30 | RDEPENDS_automake-native = "autoconf-native perl-native-runtime" | ||
31 | |||
32 | PATHFIXPATCH = "file://path_prog_fixes.patch" | ||
33 | PATHFIXPATCH_virtclass-native = "" | ||
34 | PATHFIXPATCH_virtclass-nativesdk = "" | ||
35 | |||
36 | SRC_URI += "${PATHFIXPATCH} \ | ||
37 | file://prefer-cpio-over-pax-for-ustar-archives.patch \ | ||
38 | file://python-libdir.patch" | ||
39 | |||
40 | PR = "r0" | ||
41 | SRC_URI[md5sum] = "18194e804d415767bae8f703c963d456" | ||
42 | SRC_URI[sha256sum] = "4f46d1f9380c8a3506280750f630e9fc915cb1a435b724be56b499d016368718" | ||
43 | |||
44 | do_install () { | ||
45 | oe_runmake 'DESTDIR=${D}' install | ||
46 | install -d ${D}${datadir} | ||
47 | } | ||
48 | |||
49 | BBCLASSEXTEND = "native nativesdk" | ||