diff options
author | Tim Orling <TicoTimo@gmail.com> | 2014-05-21 00:43:40 -0700 |
---|---|---|
committer | Paul Eggleton <paul.eggleton@linux.intel.com> | 2014-06-04 09:52:54 +0100 |
commit | 2ee811a7aa17b196d407842f46421690143c81ac (patch) | |
tree | 8152a1f0e73dc3469885083aaa9663f53ba1a78b /meta-perl/recipes-perl | |
parent | c27e0dcffa478e00aa68b1ced9e5fe4538066925 (diff) | |
download | meta-openembedded-2ee811a7aa17b196d407842f46421690143c81ac.tar.gz |
libmodule-build-tiny-perl: add 0.036
[Description from CPAN]
Many Perl distributions use a Build.PL file instead of a
Makefile.PL file to drive distribution configuration, build, test and
installation. Traditionally, Build.PL uses Module::Build as the
underlying
build system. This module provides a simple, lightweight, drop-in
replacement.
* Add ${CPAN_MIRROR} option
* Versions since 0.033 depend on TAP::Harness::Env
Signed-off-by: Tim Orling <TicoTimo@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl')
-rw-r--r-- | meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.036.bb | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.036.bb b/meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.036.bb new file mode 100644 index 000000000..2e725a83f --- /dev/null +++ b/meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.036.bb | |||
@@ -0,0 +1,55 @@ | |||
1 | SUMMARY = "Module::Build::Tiny - A tiny replacement for Module::Build" | ||
2 | DESCRIPTION = "Many Perl distributions use a Build.PL file instead of a \ | ||
3 | Makefile.PL file to drive distribution configuration, build, test and \ | ||
4 | installation. Traditionally, Build.PL uses Module::Build as the underlying \ | ||
5 | build system. This module provides a simple, lightweight, drop-in replacement. \ | ||
6 | Whereas Module::Build has over 6,700 lines of code; this module has less than \ | ||
7 | 120, yet supports the features needed by most distributions." | ||
8 | SECTION = "libs" | ||
9 | |||
10 | HOMEPAGE = "http://search.cpan.org/~leont/Module-Build-Tiny/" | ||
11 | |||
12 | LICENSE = "Artistic-1.0 | GPL-1.0+" | ||
13 | LIC_FILES_CHKSUM = "file://LICENSE;md5=aaca61412962cf972aec0cdad99d0a84" | ||
14 | |||
15 | DEPENDS = "libextutils-config-perl-native libextutils-helpers-perl-native libextutils-installpaths-perl-native" | ||
16 | |||
17 | SRC_URI = "${CPAN_MIRROR}/authors/id/L/LE/LEONT/Module-Build-Tiny-${PV}.tar.gz" | ||
18 | SRC_URI[md5sum] = "bfc92c655158ce623f0ced94f4ef02e5" | ||
19 | SRC_URI[sha256sum] = "d6706bf35e080e5af20cccf4fd565cc8af9c2a1e2e2075cee0a7de42cf0d6df9" | ||
20 | |||
21 | S = "${WORKDIR}/Module-Build-Tiny-${PV}" | ||
22 | |||
23 | inherit cpan_build | ||
24 | |||
25 | do_install () { | ||
26 | cpan_build_do_install | ||
27 | } | ||
28 | |||
29 | RDEPENDS_${PN} = " libextutils-config-perl \ | ||
30 | libextutils-helpers-perl \ | ||
31 | libextutils-installpaths-perl \ | ||
32 | libtap-harness-env-perl \ | ||
33 | perl-module-xsloader \ | ||
34 | perl-module-file-spec \ | ||
35 | perl-module-io-handle \ | ||
36 | perl-module-tap-harness-env \ | ||
37 | perl-module-ipc-open3 \ | ||
38 | perl-module-file-path \ | ||
39 | perl-module-cpan-meta \ | ||
40 | perl-module-extutils-cbuilder \ | ||
41 | perl-module-getopt-long \ | ||
42 | perl-module-extutils-makemaker \ | ||
43 | perl-module-exporter \ | ||
44 | perl-module-carp \ | ||
45 | perl-module-test-more \ | ||
46 | perl-module-text-parsewords \ | ||
47 | perl-module-module-load \ | ||
48 | perl-module-file-temp \ | ||
49 | perl-module-data-dumper \ | ||
50 | perl-module-extutils-parsexs \ | ||
51 | perl-module-pod-man \ | ||
52 | perl-module-json-pp \ | ||
53 | " | ||
54 | |||
55 | BBCLASSEXTEND = "native" | ||