summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl-cross/perlcross_1.5.bb
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2023-09-06 18:56:21 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-07 14:36:30 +0100
commit3b693d16747cecc98bd06cab5bce6a2423f3b796 (patch)
treeb5819d018f6befeb7fee3a8034eca3cafc0c9c9a /meta/recipes-devtools/perl-cross/perlcross_1.5.bb
parent97df11e158d24b663dd169c3189ec044b5af6983 (diff)
downloadpoky-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.bb38
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 @@
1SUMMARY = "Perl-cross build system"
2HOMEPAGE = "https://github.com/arsv/perl-cross"
3DESCRIPTION = "perl-cross provides configure script, top-level Makefile and some auxiliary files for perl, \
4with the primary emphasis on cross-compiling the source."
5SECTION = "devel"
6LICENSE = "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
9LIC_FILES_CHKSUM = "file://${WORKDIR}/README.md;md5=252fcce2026b765fee1ad74d2fb07a3b"
10
11inherit allarch github-releases
12
13SRC_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 "
19GITHUB_BASE_URI = "https://github.com/arsv/perl-cross/releases/"
20
21SRC_URI[perl-cross.sha256sum] = "d744a390939e2ebb9a12f6725b4d9c19255a141d90031eff90ea183fdfcbf211"
22
23S = "${WORKDIR}/perl-cross-${PV}"
24
25do_configure () {
26}
27
28do_compile () {
29}
30
31do_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
37BBCLASSEXTEND = "native"
38