1*4882a593SmuzhiyunSUMMARY = "A simple, sane and efficient module to slurp a file"
2*4882a593SmuzhiyunDESCRIPTION = "This module provides functions for fast and correct slurping and spewing. \
3*4882a593SmuzhiyunAll functions are optionally exported. All functions throw exceptions on \
4*4882a593Smuzhiyunerrors, write functions don't return any meaningful value."
5*4882a593Smuzhiyun
6*4882a593SmuzhiyunSECTION = "libs"
7*4882a593SmuzhiyunLICENSE = "Artistic-1.0 | GPL-1.0-or-later"
8*4882a593Smuzhiyun
9*4882a593SmuzhiyunHOMEPAGE=       "https://metacpan.org/release/File-Slurper"
10*4882a593Smuzhiyun
11*4882a593SmuzhiyunLIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Artistic-1.0;md5=cda03bbdc3c1951996392b872397b798 \
12*4882a593Smuzhiyunfile://${COMMON_LICENSE_DIR}/GPL-1.0-or-later;md5=30c0b8a5048cc2f4be5ff15ef0d8cf61"
13*4882a593Smuzhiyun
14*4882a593SmuzhiyunSRC_URI = "${CPAN_MIRROR}/authors/id/L/LE/LEONT/File-Slurper-${PV}.tar.gz"
15*4882a593Smuzhiyun
16*4882a593SmuzhiyunSRC_URI[sha256sum] = "e2f6a4029a6a242d50054044f1fb86770b9b5cc4daeb1a967f91ffb42716a8c5"
17*4882a593SmuzhiyunRDEPENDS:${PN} = " \
18*4882a593Smuzhiyun    perl-module-carp \
19*4882a593Smuzhiyun    perl-module-encode \
20*4882a593Smuzhiyun    perl-module-exporter \
21*4882a593Smuzhiyun    perl-module-perlio \
22*4882a593Smuzhiyun    perl-module-perlio-encoding \
23*4882a593Smuzhiyun    perl-module-strict \
24*4882a593Smuzhiyun    perl-module-warnings \
25*4882a593Smuzhiyun"
26*4882a593Smuzhiyun
27*4882a593SmuzhiyunRDEPENDS:${PN}-ptest += "libtest-warnings-perl \
28*4882a593Smuzhiyun    perl-module-test-more \
29*4882a593Smuzhiyun    "
30*4882a593Smuzhiyun
31*4882a593SmuzhiyunS = "${WORKDIR}/File-Slurper-${PV}"
32*4882a593Smuzhiyun
33*4882a593Smuzhiyuninherit cpan ptest-perl
34*4882a593Smuzhiyun
35*4882a593SmuzhiyunBBCLASSEXTEND = "native"
36