byacc.inc 531 B

1234567891011121314151617
  1. SUMMARY = "Berkeley LALR Yacc parser generator"
  2. DESCRIPTION = "A parser generator utility that reads a grammar specification from a file and generates an LR(1) \
  3. parser for it. The parsers consist of a set of LALR(1) parsing tables and a driver routine written in the C \
  4. programming language."
  5. SECTION = "devel"
  6. LICENSE = "public domain"
  7. SRC_URI = "ftp://invisible-island.net/byacc/byacc-${PV}.tgz"
  8. EXTRA_OECONF += "--program-transform-name='s,^,b,'"
  9. BBCLASSEXTEND = "native"
  10. inherit autotools
  11. do_configure() {
  12. oe_runconf
  13. }