mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-01-27 12:01:38 +01:00
Add missing dependencies.
Also, fixing the tests have surfaced an actual bug: the module
expects unversioned perl library to be present on the system
(or at least present in Perl's $Config{libperl}), however the
OE Perl build has a versioned library, which causes final linking
to fail.
A patch to correct this is part of this change, and it has been
submitted upstream also.
Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
55 lines
1.9 KiB
BlitzBasic
55 lines
1.9 KiB
BlitzBasic
# Copyright (C) 2020 Jens Rehsack <sno@netbsd.org>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
SUMMARY = "A module to implement some of AutoConf macros in pure perl"
|
|
DESCRIPTION = "Config::AutoConf is intended to provide the same opportunities to Perl \
|
|
developers as GNU Autoconf <http://www.gnu.org/software/autoconf/> does for \
|
|
Shell developers."
|
|
|
|
HOMEPAGE = "https://metacpan.org/release/Config-AutoConf"
|
|
|
|
SECTION = "libs"
|
|
LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
|
|
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Artistic-1.0;md5=cda03bbdc3c1951996392b872397b798 \
|
|
file://${COMMON_LICENSE_DIR}/GPL-1.0-or-later;md5=30c0b8a5048cc2f4be5ff15ef0d8cf61"
|
|
|
|
SRC_URI = "${CPAN_MIRROR}/authors/id/A/AM/AMBS/Config-AutoConf-${PV}.tar.gz \
|
|
file://0001-correct-libperl-regex.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "bb57a958ef49d3f7162276dae14a7bd5af43fd1d8513231af35d665459454023"
|
|
RDEPENDS:${PN} += "libcapture-tiny-perl"
|
|
RDEPENDS:${PN} += "perl-module-base"
|
|
RDEPENDS:${PN} += "perl-module-carp"
|
|
RDEPENDS:${PN} += "perl-module-config"
|
|
RDEPENDS:${PN} += "perl-module-constant"
|
|
RDEPENDS:${PN} += "perl-module-file-basename"
|
|
RDEPENDS:${PN} += "perl-module-file-spec"
|
|
RDEPENDS:${PN} += "perl-module-file-temp"
|
|
RDEPENDS:${PN} += "perl-module-extutils-cbuilder"
|
|
RDEPENDS:${PN} += "perl-module-extutils-cbuilder-platform-unix"
|
|
RDEPENDS:${PN} += "perl-module-scalar-util"
|
|
RDEPENDS:${PN} += "perl-module-strict"
|
|
RDEPENDS:${PN} += "perl-module-text-parsewords"
|
|
RDEPENDS:${PN} += "perl-module-warnings"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
packagegroup-core-buildessential \
|
|
perl-dev \
|
|
perl-module-file-glob \
|
|
perl-module-perl-ostype \
|
|
perl-module-metadata"
|
|
|
|
RRECOMMENDS:${PN} += "libfile-slurper-perl"
|
|
|
|
# One test requires perl headers (perl-dev) to compile some
|
|
# test application.
|
|
INSANE_SKIP:${PN}-ptest += "dev-deps"
|
|
|
|
S = "${UNPACKDIR}/Config-AutoConf-${PV}"
|
|
|
|
inherit cpan ptest-perl
|
|
|
|
BBCLASSEXTEND = "native"
|