wok view lemon/receipt @ rev 5406

Up: mtpaint (3.31) - Added bzip2 and acl to build depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 02 23:15:57 2010 +0000 (2010-05-02)
parents d747b7cd6d08
children 6c8824502823
line source
1 # SliTaz package receipt.
3 PACKAGE="lemon"
4 VERSION="3.6.23.1"
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 lemon-$VERSION && cd lemon-$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 lemon-$VERSION/lemon $fs/usr/bin
27 cp lemon-$VERSION/lempar.c $fs/usr/share/lemon
28 }