Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1 | require automake.inc |
| 2 | LICENSE = "GPLv2" |
| 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 4 | DEPENDS:class-native = "autoconf-native" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 5 | |
| 6 | NAMEVER = "${@oe.utils.trim_version("${PV}", 2)}" |
| 7 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 8 | RDEPENDS:${PN} += "\ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 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 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 19 | RDEPENDS:${PN}:class-native = "autoconf-native hostperl-runtime-native" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 20 | |
| 21 | SRC_URI += "file://python-libdir.patch \ |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 22 | file://buildtest.patch \ |
| 23 | file://performance.patch \ |
| 24 | file://new_rt_path_for_test-driver.patch \ |
| 25 | file://0001-automake-Add-default-libtool_tag-to-cppasm.patch \ |
| 26 | file://0001-build-fix-race-in-parallel-builds.patch \ |
| 27 | " |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 28 | |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 29 | SRC_URI[sha256sum] = "ce010788b51f64511a1e9bb2a1ec626037c6d0e7ede32c1c103611b9d3cba65f" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 30 | |
| 31 | PERL = "${USRBINPATH}/perl" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 32 | PERL:class-native = "${USRBINPATH}/env perl" |
| 33 | PERL:class-nativesdk = "${USRBINPATH}/env perl" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 34 | |
| 35 | CACHED_CONFIGUREVARS += "ac_cv_path_PERL='${PERL}'" |
| 36 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 37 | do_install:append () { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 38 | install -d ${D}${datadir} |
| 39 | } |
| 40 | |
| 41 | BBCLASSEXTEND = "native nativesdk" |