wok view sqlite/receipt @ rev 1139

xorg-server: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jul 24 12:34:08 2008 +0000 (2008-07-24)
parents 06c5a60a72b8
children 1a979c69a95a
line source
1 # SliTaz package receipt.
3 PACKAGE="sqlite"
4 VERSION="3.5.9"
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 $CONFIGURE_ARGS
21 make
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 cp -a $_pkg/usr/bin $fs/usr
31 }