| Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1 | SUMMARY = "Module::Build - Build and install Perl modules" | 
|  | 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 |  | 
|  | 9 | SECTION = "libs" | 
|  | 10 |  | 
|  | 11 | HOMEPAGE = "https://metacpan.org/release/Module-Build" | 
|  | 12 |  | 
|  | 13 | LICENSE = "Artistic-1.0 | GPL-1.0+" | 
|  | 14 | LIC_FILES_CHKSUM = "file://README;beginline=949;endline=954;md5=624c06db56a2af4d70cf9edc29fcae1b" | 
|  | 15 |  | 
|  | 16 | SRC_URI = "${CPAN_MIRROR}/authors/id/L/LE/LEONT/Module-Build-${PV}.tar.gz \ | 
|  | 17 | file://run-ptest \ | 
|  | 18 | " | 
|  | 19 | SRC_URI[md5sum] = "066b193e461d7dfe1eca17a139353001" | 
|  | 20 | SRC_URI[sha256sum] = "7e0f4c692c1740c1ac84ea14d7ea3d8bc798b2fb26c09877229e04f430b2b717" | 
|  | 21 |  | 
|  | 22 | S = "${WORKDIR}/Module-Build-${PV}" | 
|  | 23 |  | 
|  | 24 | inherit cpan_build ptest-perl | 
|  | 25 |  | 
|  | 26 | # From: | 
|  | 27 | # https://github.com/rehsack/meta-cpan/blob/master/recipes-devel/module-build-perl/module-build-perl_0.4216.bb | 
|  | 28 | # | 
|  | 29 | do_patch_module_build () { | 
|  | 30 | cd ${S} | 
|  | 31 | sed -i -e 's,my $interpreter = $self->{properties}{perl};,my $interpreter = "${bindir}/perl";,g' lib/Module/Build/Base.pm | 
|  | 32 | } | 
|  | 33 |  | 
|  | 34 | do_patch[postfuncs] += "do_patch_module_build" | 
|  | 35 |  | 
|  | 36 | EXTRA_CPAN_BUILD_FLAGS = "--create_packlist=0" | 
|  | 37 |  | 
|  | 38 | do_install_append () { | 
|  | 39 | rm -rf ${D}${docdir}/perl/html | 
|  | 40 | } | 
|  | 41 |  | 
|  | 42 | do_install_ptest() { | 
|  | 43 | cp -r ${B}/inc ${D}${PTEST_PATH} | 
|  | 44 | cp -r ${B}/blib ${D}${PTEST_PATH} | 
|  | 45 | cp -r ${B}/_build ${D}${PTEST_PATH} | 
|  | 46 | cp -r ${B}/lib ${D}${PTEST_PATH} | 
|  | 47 | chown -R root:root ${D}${PTEST_PATH} | 
|  | 48 | sed -i -e "s,'perl' => .*,'perl' => '/usr/bin/perl'\,,g" \ | 
|  | 49 | -e "s,${STAGING_BINDIR_NATIVE}/perl-native/\.\.,${bindir}/,g" \ | 
|  | 50 | -e "s,${S},,g" \ | 
|  | 51 | -e "s,${D},,g" \ | 
|  | 52 | ${D}${PTEST_PATH}/_build/build_params \ | 
|  | 53 | ${D}${PTEST_PATH}/_build/runtime_params | 
|  | 54 | rm -rf ${D}${PTEST_PATH}/blib/libhtml/site/lib/Module/ | 
|  | 55 | rm -rf ${D}${PTEST_PATH}/_build/magicnum | 
|  | 56 | } | 
|  | 57 |  | 
|  | 58 | RDEPENDS_${PN} += " \ | 
|  | 59 | perl-module-carp \ | 
|  | 60 | perl-module-cpan \ | 
|  | 61 | perl-module-config \ | 
|  | 62 | perl-module-cwd \ | 
|  | 63 | perl-module-data-dumper \ | 
|  | 64 | perl-module-encode \ | 
|  | 65 | perl-module-extutils-cbuilder \ | 
|  | 66 | perl-module-extutils-command \ | 
|  | 67 | perl-module-extutils-install \ | 
|  | 68 | perl-module-extutils-installed \ | 
|  | 69 | perl-module-extutils-mkbootstrap \ | 
|  | 70 | perl-module-extutils-packlist \ | 
|  | 71 | perl-module-extutils-parsexs \ | 
|  | 72 | perl-module-file-basename \ | 
|  | 73 | perl-module-file-compare \ | 
|  | 74 | perl-module-file-copy \ | 
|  | 75 | perl-module-file-find \ | 
|  | 76 | perl-module-file-glob \ | 
|  | 77 | perl-module-file-path \ | 
|  | 78 | perl-module-file-spec \ | 
|  | 79 | perl-module-file-spec-functions \ | 
|  | 80 | perl-module-getopt-long \ | 
|  | 81 | perl-module-metadata \ | 
|  | 82 | perl-module-perl-ostype \ | 
|  | 83 | perl-module-pod-man \ | 
|  | 84 | perl-module-tap-harness \ | 
|  | 85 | perl-module-text-abbrev \ | 
|  | 86 | perl-module-text-parsewords \ | 
|  | 87 | perl-module-utf8 \ | 
|  | 88 | " | 
|  | 89 |  | 
|  | 90 | RDEPENDS_${PN}-ptest += " \ | 
|  | 91 | packagegroup-core-buildessential \ | 
|  | 92 | perl-dev \ | 
|  | 93 | perl-module-blib \ | 
|  | 94 | perl-module-extutils-command-mm \ | 
|  | 95 | perl-module-file-temp \ | 
|  | 96 | perl-module-lib \ | 
|  | 97 | perl-module-perlio \ | 
|  | 98 | perl-module-perlio-encoding \ | 
|  | 99 | perl-module-pod-text \ | 
|  | 100 | perl-module-tap-harness-env \ | 
|  | 101 | perl-module-tap-parser \ | 
|  | 102 | perl-module-tap-parser-scheduler \ | 
|  | 103 | perl-module-test-harness \ | 
|  | 104 | perl-module-test-more \ | 
|  | 105 | " | 
|  | 106 |  | 
|  | 107 | RPROVIDES_${PN} += "\ | 
|  | 108 | libmodule-build-base-perl \ | 
|  | 109 | libmodule-build-compat-perl \ | 
|  | 110 | libmodule-build-config-perl \ | 
|  | 111 | libmodule-build-cookbook-perl \ | 
|  | 112 | libmodule-build-dumper-perl \ | 
|  | 113 | libmodule-build-notes-perl \ | 
|  | 114 | libmodule-build-ppmaker-perl \ | 
|  | 115 | libmodule-build-platform-default-perl \ | 
|  | 116 | libmodule-build-platform-unix-perl \ | 
|  | 117 | libmodule-build-podparser-perl \ | 
|  | 118 | " | 
|  | 119 |  | 
|  | 120 | # t/xs.t RDEPENDS on "EXTERN.h" provided by perl-dev | 
|  | 121 | INSANE_SKIP_${PN}-ptest = "dev-deps" | 
|  | 122 |  | 
|  | 123 | BBCLASSEXTEND = "native" |