aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/lemon/lemon.inc
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/lemon/lemon.inc')
-rw-r--r--recipes/lemon/lemon.inc15
1 files changed, 15 insertions, 0 deletions
diff --git a/recipes/lemon/lemon.inc b/recipes/lemon/lemon.inc
new file mode 100644
index 0000000000..7742fb8118
--- /dev/null
+++ b/recipes/lemon/lemon.inc
@@ -0,0 +1,15 @@
+DESCRIPTION = "The Lemon Parser Generator"
+HOMEPAGE = "http://www.hwaci.com/sw/lemon/"
+LICENSE = "PD"
+PRIORITY = "optional"
+SECTION = "devel"
+
+SRC_URI = "http://www.sqlite.org/sqlite-${PV}.tar.gz \
+ file://lemon.1"
+
+S = "${WORKDIR}/sqlite-${PV}/tool"
+
+do_compile() {
+ ${CC} ${CFLAGS} lemon.c -c -o lemon.o
+ ${CCLD} ${LDFLAGS} lemon.o -o lemon
+}