diff options
author | Tim Orling <timothy.t.orling@linux.intel.com> | 2019-06-02 11:43:15 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-06-15 16:45:33 -0700 |
commit | 67f94d63f47ee135e1223aeeb6bddd6d9930199f (patch) | |
tree | 6cad2fb6db17373cc81f10e6ac1bebc08a049329 /meta-perl/recipes-perl/libhtml/libhtml-parser-perl_3.72.bb | |
parent | 4058e65f3c4e17ad04423f4c9edf8607fe6fdb4f (diff) | |
download | meta-openembedded-67f94d63f47ee135e1223aeeb6bddd6d9930199f.tar.gz |
libhtml-parser-perl: enable ptest
Add runtime and ptest dependencies
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl/libhtml/libhtml-parser-perl_3.72.bb')
-rw-r--r-- | meta-perl/recipes-perl/libhtml/libhtml-parser-perl_3.72.bb | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/meta-perl/recipes-perl/libhtml/libhtml-parser-perl_3.72.bb b/meta-perl/recipes-perl/libhtml/libhtml-parser-perl_3.72.bb index e202de05a7..a4c69c97b8 100644 --- a/meta-perl/recipes-perl/libhtml/libhtml-parser-perl_3.72.bb +++ b/meta-perl/recipes-perl/libhtml/libhtml-parser-perl_3.72.bb | |||
@@ -16,10 +16,30 @@ S = "${WORKDIR}/HTML-Parser-${PV}" | |||
16 | 16 | ||
17 | EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}" | 17 | EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}" |
18 | 18 | ||
19 | inherit cpan | 19 | inherit cpan ptest-perl |
20 | 20 | ||
21 | do_compile() { | 21 | do_compile() { |
22 | export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" | 22 | export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" |
23 | cpan_do_compile | 23 | cpan_do_compile |
24 | } | 24 | } |
25 | |||
26 | RDEPENDS_${PN} += "\ | ||
27 | perl-module-exporter \ | ||
28 | perl-module-strict \ | ||
29 | perl-module-vars \ | ||
30 | perl-module-xsloader \ | ||
31 | libhtml-tagset-perl \ | ||
32 | " | ||
33 | |||
34 | RDEPENDS_${PN}-ptest += "\ | ||
35 | liburi-perl \ | ||
36 | perl-module-config \ | ||
37 | perl-module-file-spec \ | ||
38 | perl-module-filehandle \ | ||
39 | perl-module-io-file \ | ||
40 | perl-module-selectsaver \ | ||
41 | perl-module-test \ | ||
42 | perl-module-test-more \ | ||
43 | " | ||
44 | |||
25 | BBCLASSEXTEND = "native" | 45 | BBCLASSEXTEND = "native" |