diff options
Diffstat (limited to 'meta-perl/recipes-perl/libcompress/libcompress-raw-bzip2-perl_2.213.bb')
-rw-r--r-- | meta-perl/recipes-perl/libcompress/libcompress-raw-bzip2-perl_2.213.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libcompress/libcompress-raw-bzip2-perl_2.213.bb b/meta-perl/recipes-perl/libcompress/libcompress-raw-bzip2-perl_2.213.bb new file mode 100644 index 0000000000..409216fe69 --- /dev/null +++ b/meta-perl/recipes-perl/libcompress/libcompress-raw-bzip2-perl_2.213.bb | |||
@@ -0,0 +1,28 @@ | |||
1 | SUMMARY = "Low-Level Interface to bzip2 compression library" | ||
2 | DESCRIPTION = ""Compress::Raw::Bzip2" provides an interface to the in-memory \ | ||
3 | compression/uncompression functions from the bzip2 compression library." | ||
4 | HOMEPAGE = "https://metacpan.org/release/Compress-Raw-Bzip2" | ||
5 | SECTION = "libs" | ||
6 | LICENSE = "Artistic-1.0 | GPL-1.0-or-later" | ||
7 | |||
8 | LIC_FILES_CHKSUM = "file://README;beginline=8;endline=10;md5=cd551ef796cc7fa34351ced771a3a7f9" | ||
9 | |||
10 | SRC_URI = "${CPAN_MIRROR}/authors/id/P/PM/PMQS/Compress-Raw-Bzip2-${PV}.tar.gz" | ||
11 | |||
12 | SRC_URI[sha256sum] = "8d75d3d366c9101ca18061b00d438d3da39478c06159147dea3c666770577c7b" | ||
13 | |||
14 | DEPENDS += "bzip2" | ||
15 | |||
16 | S = "${UNPACKDIR}/Compress-Raw-Bzip2-${PV}" | ||
17 | |||
18 | inherit cpan | ||
19 | |||
20 | export BUILD_BZIP2 = "0" | ||
21 | export BZIP2_INCLUDE = "-I${STAGING_DIR_HOST}${includedir}" | ||
22 | |||
23 | do_compile() { | ||
24 | export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" | ||
25 | cpan_do_compile | ||
26 | } | ||
27 | |||
28 | BBCLASSEXTEND = "native" | ||