wok view sqlite/receipt @ rev 2683

Add: libev
author Mallory MOLLO <mallory@skyrock.com>
date Wed Apr 22 17:08:17 2009 +0200 (2009-04-22)
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 }