wok view lemon/receipt @ rev 6279

Up: lxterminal, lxterminal-locales to 0.1.9.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Sep 15 11:49:32 2010 +0000 (2010-09-15)
parents 5144a898a64e
children 17129723bbc4
line source
1 # SliTaz package receipt.
3 PACKAGE="lemon"
4 VERSION="3.7.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="The LEMON Parser Generator (from the SQLite project)."
7 MAINTAINER="pankso@slitaz.org"
8 WANTED="sqlite"
9 WEB_SITE="http://www.sqlite.org/"
11 # Rules to configure and make the package.
12 compile_rules()
13 {
14 mkdir -p sqlite-$VERSION && cd sqlite-$VERSION
15 cp $src/tool/lemon.c .
16 cp $src/tool/lempar.c .
17 sed -i -e 's!lempar.c!/usr/share/lemon/lempar.c!' lemon.c
18 echo -n "Compiling lemon..."
19 gcc -o lemon lemon.c && status
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin $fs/usr/share/lemon
26 cp sqlite-$VERSION/lemon $fs/usr/bin
27 cp sqlite-$VERSION/lempar.c $fs/usr/share/lemon
28 }