wok view sqlite/receipt @ rev 2470

Up: pidgin-dev to 2.5.5
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Mar 15 11:23:16 2009 +0100 (2009-03-15)
parents 45b751869a6d
children 754fdb94b0c0
line source
1 # SliTaz package receipt.
3 PACKAGE="sqlite"
4 VERSION="3.6.10"
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 HANDBOOK_URL='http://www.slitaz.org/doc/handbook/office.html#sqlite'
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --disable-tcl \
20 --disable-readline \
21 --enable-load-extension \
22 LDFLAGS=-ldl \
23 $CONFIGURE_ARGS
24 make
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 cp -a $_pkg/usr/bin $fs/usr
34 }