blob: f9f8d6b5f03030d9a4039f4ade5de420fb7ece13 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Berkeley LALR Yacc parser generator"
2DESCRIPTION = "A parser generator utility that reads a grammar specification from a file and generates an LR(1) \
3parser for it. The parsers consist of a set of LALR(1) parsing tables and a driver routine written in the C \
4programming language."
5SECTION = "devel"
6LICENSE = "PD"
7
8SRC_URI = "ftp://invisible-island.net/byacc/byacc-${PV}.tgz \
9 file://byacc-open.patch"
10
11EXTRA_OECONF += "--program-transform-name='s,^,b,'"
12
13BBCLASSEXTEND = "native"
14
15inherit autotools
16
17do_configure() {
18 install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S}
19 install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}
20 oe_runconf
21}