diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2023-09-06 18:56:21 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-09-07 14:36:30 +0100 |
| commit | 3b693d16747cecc98bd06cab5bce6a2423f3b796 (patch) | |
| tree | b5819d018f6befeb7fee3a8034eca3cafc0c9c9a /meta/recipes-devtools/perl-cross/perlcross_1.5.bb | |
| parent | 97df11e158d24b663dd169c3189ec044b5af6983 (diff) | |
| download | poky-3b693d16747cecc98bd06cab5bce6a2423f3b796.tar.gz | |
perlcross: update 1.4.1 -> 1.5
(From OE-Core rev: fc3318790e6dc32f5aa468956a85475556673fe9)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/perl-cross/perlcross_1.5.bb')
| -rw-r--r-- | meta/recipes-devtools/perl-cross/perlcross_1.5.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl-cross/perlcross_1.5.bb b/meta/recipes-devtools/perl-cross/perlcross_1.5.bb new file mode 100644 index 0000000000..d17945480e --- /dev/null +++ b/meta/recipes-devtools/perl-cross/perlcross_1.5.bb | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | SUMMARY = "Perl-cross build system" | ||
| 2 | HOMEPAGE = "https://github.com/arsv/perl-cross" | ||
| 3 | DESCRIPTION = "perl-cross provides configure script, top-level Makefile and some auxiliary files for perl, \ | ||
| 4 | with the primary emphasis on cross-compiling the source." | ||
| 5 | SECTION = "devel" | ||
| 6 | LICENSE = "Artistic-1.0 | GPL-1.0-or-later" | ||
| 7 | # README.md is taken from https://github.com/arsv/perl-cross/blob/master/README.md | ||
| 8 | # but is not provided inside the release tarballs | ||
| 9 | LIC_FILES_CHKSUM = "file://${WORKDIR}/README.md;md5=252fcce2026b765fee1ad74d2fb07a3b" | ||
| 10 | |||
| 11 | inherit allarch github-releases | ||
| 12 | |||
| 13 | SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/perl-cross-${PV}.tar.gz;name=perl-cross \ | ||
| 14 | file://README.md \ | ||
| 15 | file://0001-perl-cross-add-LDFLAGS-when-linking-libperl.patch \ | ||
| 16 | file://determinism.patch \ | ||
| 17 | file://0001-Makefile-check-the-file-if-patched-or-not.patch \ | ||
| 18 | " | ||
| 19 | GITHUB_BASE_URI = "https://github.com/arsv/perl-cross/releases/" | ||
| 20 | |||
| 21 | SRC_URI[perl-cross.sha256sum] = "d744a390939e2ebb9a12f6725b4d9c19255a141d90031eff90ea183fdfcbf211" | ||
| 22 | |||
| 23 | S = "${WORKDIR}/perl-cross-${PV}" | ||
| 24 | |||
| 25 | do_configure () { | ||
| 26 | } | ||
| 27 | |||
| 28 | do_compile () { | ||
| 29 | } | ||
| 30 | |||
| 31 | do_install:class-native() { | ||
| 32 | mkdir -p ${D}/${datadir}/perl-cross/ | ||
| 33 | cp -rf ${S}/* ${D}/${datadir}/perl-cross/ | ||
| 34 | rm -rf ${D}/${datadir}/perl-cross/patches/ | ||
| 35 | } | ||
| 36 | |||
| 37 | BBCLASSEXTEND = "native" | ||
| 38 | |||
