wok view sqlite/receipt @ rev 6

Add : iptables, libcap, pcre, ppp, sqlite
author Christophe Lincoln <pankso@slitaz.org>
date Thu Dec 13 15:13:49 2007 +0100 (2007-12-13)
parents
children 4959e5789caa
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"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --disable-tcl \
17 $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
27 cp -a $_pkg/usr/bin $fs/usr
28 strip -s $fs/usr/lib/*.so*
29 strip -s $fs/usr/bin/*
30 }