wok-4.x view sqlite/receipt @ rev 3573

Update: apply patch once. ssmtp: fix post_install link target path. scim: fix chroot in post_install.
pa
author Liu Peng <rocky@slitaz.org>
date Fri Jun 26 00:18:25 2009 +0800 (2009-06-26)
parents 754fdb94b0c0
children d747b7cd6d08
line source
1 # SliTaz package receipt.
3 PACKAGE="sqlite"
4 VERSION="3.6.15"
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"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --prefix=/usr \
18 --disable-tcl \
19 --disable-readline \
20 --enable-load-extension \
21 LDFLAGS=-ldl \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 }