diff options
Diffstat (limited to 'meta/recipes-devtools/bison/bison_3.0.4.bb')
| -rw-r--r-- | meta/recipes-devtools/bison/bison_3.0.4.bb | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-devtools/bison/bison_3.0.4.bb b/meta/recipes-devtools/bison/bison_3.0.4.bb new file mode 100644 index 0000000000..506141041c --- /dev/null +++ b/meta/recipes-devtools/bison/bison_3.0.4.bb | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | SUMMARY = "GNU Project parser generator (yacc replacement)" | ||
| 2 | DESCRIPTION = "Bison is a general-purpose parser generator that converts an annotated context-free grammar into \ | ||
| 3 | an LALR(1) or GLR parser for that grammar. Bison is upward compatible with Yacc: all properly-written Yacc \ | ||
| 4 | grammars ought to work with Bison with no change. Anyone familiar with Yacc should be able to use Bison with \ | ||
| 5 | little trouble." | ||
| 6 | HOMEPAGE = "http://www.gnu.org/software/bison/" | ||
| 7 | LICENSE = "GPLv3" | ||
| 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
| 9 | SECTION = "devel" | ||
| 10 | DEPENDS = "bison-native flex-native" | ||
| 11 | |||
| 12 | SRC_URI = "${GNU_MIRROR}/bison/bison-${PV}.tar.xz \ | ||
| 13 | file://m4.patch \ | ||
| 14 | file://0001-Unset-need_charset_alias-when-building-for-musl.patch \ | ||
| 15 | " | ||
| 16 | |||
| 17 | # No point in hardcoding path to m4, just use PATH | ||
| 18 | EXTRA_OECONF += "M4=m4" | ||
| 19 | |||
| 20 | SRC_URI[md5sum] = "c342201de104cc9ce0a21e0ad10d4021" | ||
| 21 | SRC_URI[sha256sum] = "a72428c7917bdf9fa93cb8181c971b6e22834125848cf1d03ce10b1bb0716fe1" | ||
| 22 | |||
| 23 | LDFLAGS_prepend_libc-uclibc = " -lrt " | ||
| 24 | DEPENDS_class-native = "gettext-minimal-native" | ||
| 25 | |||
| 26 | inherit autotools gettext texinfo | ||
| 27 | acpaths = "-I ${S}/m4" | ||
| 28 | |||
| 29 | do_compile_prepend() { | ||
| 30 | for i in mfcalc calc++ rpcalc; do mkdir -p ${B}/examples/$i; done | ||
| 31 | } | ||
| 32 | |||
| 33 | do_install_append_class-native() { | ||
| 34 | create_wrapper ${D}/${bindir}/bison \ | ||
| 35 | BISON_PKGDATADIR=${STAGING_DATADIR_NATIVE}/bison | ||
| 36 | } | ||
| 37 | BBCLASSEXTEND = "native nativesdk" | ||
