wok view pysqlite/receipt @ rev 8972

Up iproute2 (2.6.37)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 02 10:32:40 2011 +0100 (2011-03-02)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="pysqlite"
4 VERSION="2.6.0"
5 CATEGORY="development"
6 SHORT_DESC="A Python DB-API 2.0 interface for the SQLite embedded relational database engine."
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="python sqlite"
9 BUILD_DEPENDS="python-dev sqlite-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://code.google.com/p/pysqlite/"
12 WGET_URL="http://pysqlite.googlecode.com/files/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 cp ../stuff/setup.cfg .
19 python setup.py install --root=$PWD/_pkg
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $_pkg/usr/lib $fs/usr
27 }