wok view sqlite/receipt @ rev 237

UP: nano (2.0.7) and sqlite (3.5.6)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 17 22:20:04 2008 +0100 (2008-02-17)
parents de8dad81f96a
children eb4e6a1af180
line source
1 # SliTaz package receipt.
3 PACKAGE="sqlite"
4 VERSION="3.5.6"
5 CATEGORY="office"
6 SHORT_DESC="Small SQL database engine."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.sqlite.org/"
10 WGET_URL="http://www.sqlite.org/$TARBALL"
11 JWM_MENU='Office:<Program icon="applications-other.png" label="SQLite">xterm -bg black -fg white -cr lightgreen -e sqlite3</Program>'
12 HANDBOOK_URL='http://www.slitaz.org/doc/handbook/office.html#sqlite'
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --disable-tcl \
19 $CONFIGURE_ARGS
20 make
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 cp -a $_pkg/usr/bin $fs/usr
30 }