[meta-security][PATCH] libcurses-perl: Fix build issue
Update to later vesrion to fix build issue.
Signed-off-by: Armin Kuster <akuster@...> --- recipes-security/perl/libcurses-perl_1.28.bb | 26 -------------------------- recipes-security/perl/libcurses-perl_1.31.bb | 27 +++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 26 deletions(-) delete mode 100644 recipes-security/perl/libcurses-perl_1.28.bb create mode 100644 recipes-security/perl/libcurses-perl_1.31.bb diff --git a/recipes-security/perl/libcurses-perl_1.28.bb b/recipes-security/perl/libcurses-perl_1.28.bb deleted file mode 100644 index d05a0f2..0000000 --- a/recipes-security/perl/libcurses-perl_1.28.bb +++ /dev/null @@ -1,26 +0,0 @@ -DESCRIPTION = "lib-curses provides an interface between Perl programs and \ -the curses library." - -SECTION = "libs" -LICENSE = "Artistic-1.0 | GPL-1.0+" -PR = "r0" - -LIC_FILES_CHKSUM = "file://README;beginline=26;endline=30;md5=0b37356c5e9e28080a3422d82af8af09" - -DEPENDS += "perl ncurses" - -SRC_URI = "http://www.cpan.org/authors/id/G/GI/GIRAFFED/Curses-1.28.tgz" - -SRC_URI[md5sum] = "ed9f7ddf2d90f4266da91c3dc9fad9c9" -SRC_URI[sha256sum] = "613b73c4b6075b1550592812214e4fc0e2205d3afcf234e3fa90f208fb8de892" - -S = "${WORKDIR}/Curses-${PV}" - -EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}" - -inherit cpan - -do_compile() { - export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" - cpan_do_compile -} diff --git a/recipes-security/perl/libcurses-perl_1.31.bb b/recipes-security/perl/libcurses-perl_1.31.bb new file mode 100644 index 0000000..bd74439 --- /dev/null +++ b/recipes-security/perl/libcurses-perl_1.31.bb @@ -0,0 +1,27 @@ +DESCRIPTION = "lib-curses provides an interface between Perl programs and \ +the curses library." + +SECTION = "libs" +LICENSE = "Artistic-1.0 | GPL-1.0+" +PR = "r0" + +LIC_FILES_CHKSUM = "file://README;beginline=26;endline=30;md5=0b37356c5e9e28080a3422d82af8af09" + +DEPENDS += "perl ncurses " + +SRC_URI = "http://www.cpan.org/authors/id/G/GI/GIRAFFED/Curses-${PV}.tgz" + +SRC_URI[md5sum] = "119aff0faaa9347ed32dad127c4a6707" +SRC_URI[sha256sum] = "7bb4623ac97125c85e25f9fbf980103da7ca51c029f704f0aa129b7a2e50a27a" + +S = "${WORKDIR}/Curses-${PV}" + +EXTRA_CPANFLAGS = "INC=-I${STAGING_INCDIR} LIBS=-L${STAGING_LIBDIR}" + +inherit cpan + +do_compile() { + export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" + cpan_do_compile +} + -- 1.9.1 |
|