byacc.inc 828 B

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