summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/byacc/byacc.inc
diff options
context:
space:
mode:
authorAdrian Dudau <adrian.dudau@enea.com>2014-06-26 14:36:22 +0200
committerAdrian Dudau <adrian.dudau@enea.com>2014-06-26 15:32:53 +0200
commitf4cf9fe05bb3f32fabea4e54dd92d368967a80da (patch)
tree487180fa9866985ea7b28e625651765d86f515c3 /meta/recipes-extended/byacc/byacc.inc
downloadpoky-f4cf9fe05bb3f32fabea4e54dd92d368967a80da.tar.gz
initial commit for Enea Linux 4.0
Migrated from the internal git server on the daisy-enea branch Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'meta/recipes-extended/byacc/byacc.inc')
-rw-r--r--meta/recipes-extended/byacc/byacc.inc19
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/recipes-extended/byacc/byacc.inc b/meta/recipes-extended/byacc/byacc.inc
new file mode 100644
index 0000000000..fae9e2504a
--- /dev/null
+++ b/meta/recipes-extended/byacc/byacc.inc
@@ -0,0 +1,19 @@
1SUMMARY = "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"
9EXTRA_OECONF += "--program-transform-name='s,^,b,'"
10
11BBCLASSEXTEND = "native"
12
13inherit autotools
14
15do_configure() {
16 install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S}
17 install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}
18 oe_runconf
19}