wok view pysqlite/receipt @ rev 2725

Add: exiv2, exiv2-dev
author Rohit Joshi <jozee@slitaz.org>
date Fri Apr 24 07:28:47 2009 +0000 (2009-04-24)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="pysqlite"
4 VERSION="2.5.1"
5 CATEGORY="development"
6 SHORT_DESC="Python interface for the SQLite database"
7 MAINTAINER="sygne@ombres.eu"
8 DEPENDS="sqlite python"
9 BUILD_DEPENDS="sqlite-dev python-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://pysqlite.org/"
12 WGET_URL="http://oss.itsystementwicklung.de/download/pysqlite/2.5/$VERSION/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
19 python setup.py build
20 python setup.py install --root=$PWD/_pkg
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/lib $fs/usr
29 }