wok view sqlite/receipt @ rev 153

Add JWM_MENU infos
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 26 19:03:45 2008 +0100 (2008-01-26)
parents 5a6cb7128cbe
children cdac43c3f44f
line source
1 # SliTaz package receipt.
3 PACKAGE="sqlite"
4 VERSION="3.5.3"
5 CATEGORY="base-apps"
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='Productivity:<Program icon="applications-other.png" label="SQLite">xterm -bg black -fg white -cr lightgreen -e sqlite3</Program>'
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --disable-tcl \
18 $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 cp -a $_pkg/usr/bin $fs/usr
29 strip -s $fs/usr/lib/*.so*
30 strip -s $fs/usr/bin/*
31 }