wok view sqlite/receipt @ rev 11482

libxml2: add python as build_depend
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sun Dec 18 03:01:59 2011 +0100 (2011-12-18)
parents 017ae4c07215
children 9b467e60ded0
line source
1 # SliTaz package receipt.
3 PACKAGE="sqlite"
4 _amalgamationver=3070900
5 _amalgamationver2=${_amalgamationver/00/}
6 VERSION="${_amalgamationver2//0/.}"
7 CATEGORY="office"
8 SHORT_DESC="Small SQL database engine."
9 MAINTAINER="pankso@slitaz.org"
10 TARBALL="$PACKAGE-src-${_amalgamationver}.zip"
11 DEPENDS="libsqlite"
12 BUILD_DEPENDS="tcl"
13 WEB_SITE="http://www.sqlite.org/"
14 WGET_URL="http://www.sqlite.org/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE"
21 ./configure \
22 --prefix=/usr \
23 --disable-tcl \
24 --disable-readline \
25 --enable-load-extension \
26 LDFLAGS=-ldl \
27 $CONFIGURE_ARGS &&
28 sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool &&
29 sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool &&
30 make &&
31 make DESTDIR=$DESTDIR install
32 # compile lemon here instead of in lemon
33 if [ -f $src/lemon ]; then
34 rm $src/lemon
35 fi
36 cp $src/tool/lemon.c .
37 sed -i -e 's!lempar.c!/usr/share/lemon/lempar.c!' lemon.c
38 echo -n "Compiling lemon..."
39 gcc -o lemon lemon.c && status
40 mkdir -p $DESTDIR/usr/share/lemon
41 cp -a $src/lemon $DESTDIR/usr/bin
42 cp -a $src/lempar.c $DESTDIR/usr/share/lemon
43 }
45 # Rules to gen a SliTaz package suitable for Tazpkg.
46 genpkg_rules()
47 {
48 mkdir -p $fs/usr
50 cp -a $install/usr/bin $fs/usr
51 if [ -f $fs/usr/bin/lemon ]; then
52 rm -f $fs/usr/bin/lemon
53 fi
54 }