mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
25 lines
829 B
BlitzBasic
25 lines
829 B
BlitzBasic
SUMMARY = "Perl extension for generating and using LALR parsers"
|
|
DESCRIPTION = "Parse::Yapp (Yet Another Perl Parser compiler) is a collection \
|
|
of modules that let you generate and use yacc like thread safe (reentrant) parsers \
|
|
with perl object oriented interface."
|
|
|
|
HOMEPAGE = "http://search.cpan.org/dist/Parse-Yapp/"
|
|
SECTION = "libs"
|
|
LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
|
|
|
|
LIC_FILES_CHKSUM = "file://lib/Parse/Yapp.pm;beginline=508;endline=521;md5=41a4542fcde97a600c9de0d782a90256"
|
|
|
|
SRC_URI = "https://www.cpan.org/authors/id/W/WB/WBRASWELL/Parse-Yapp-${PV}.tar.gz"
|
|
|
|
SRC_URI[sha256sum] = "3810e998308fba2e0f4f26043035032b027ce51ce5c8a52a8b8e340ca65f13e5"
|
|
|
|
S = "${UNPACKDIR}/Parse-Yapp-${PV}"
|
|
|
|
inherit cpan
|
|
|
|
do_install:append() {
|
|
sed -i "s:^#!.*:#!/usr/bin/env perl:" ${D}${bindir}/yapp
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|